Categories
earn money from youtube

How to make money from youtube

Hello guys I am technical collegian.

Here is how to earn money from YouTube ▶️.

First of all you have to make your own YouTube channel on YouTube. For this link your mail I’d then click on the create channel. Hurrey your channel is created.

Then you can make any video and upload it on YouTube with proper tag and title. Don’t forget to make good thumbnail so people like to see your video.now all process is completed.

Now you have to reach 1000 subscribers and 4000 hours watch time in your channel in one year. When you achieve it you can start monetize your channel that is what you are waiting for. Yes na.

Categories
Uncategorized

Infix to postfix using stack in c

#include<stdio.h>
char stack[20];
int top = -1;
void push(char x)
{
stack[++top] = x;
}

char pop()
{
if(top == -1)
return -1;
else
return stack[top–];
}

int priority(char x)
{
if(x == ‘(‘)
return 0;
if(x == ‘+’ || x == ‘-‘)
return 1;
if(x == ‘*’ || x == ‘/’)
return 2;
}

main()
{
char exp[20];
char *e, x;
printf(“Enter the expression :: “);
scanf(“%s”,exp);
e = exp;
while(*e != ‘\0’)
{
if(isalnum(*e))
printf(“%c”,*e);
else if(*e == ‘(‘)
push(*e);
else if(*e == ‘)’)
{
while((x = pop()) != ‘(‘)
printf(“%c”, x);
}
else
{
while(priority(stack[top]) >= priority(*e))
printf(“%c”,pop());
push(*e);
}
e++;
}
while(top != -1)
{
printf(“%c”,pop());
}
}

Categories
Uncategorized

Welcome to my blogs

Follow for more update.

also visit this

Design a site like this with WordPress.com
Get started