Why main is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to write a c program to print list of fruits in alpabetical order?
What is data structure in c programming?
What does %p mean c?
What are the 4 types of unions?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Explain the use of 'auto' keyword in c programming?
What are the usage of pointer in c?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
What is putchar() function?
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
What is indirection? How many levels of pointers can you have?
What is spaghetti programming?