Main must be written as
a.the first function in the program
b.Second function in the program
c.Last function in the program
d.any where in the program
Answer Posted / maskfriend
d.any where in the program. but it should declare after the
declaration of veriable where it starts execution of the
program
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
explain what is fifo?
How can I list all of the predefined identifiers?
What are the header files used in c language?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Explain the use of function toupper() with and example code?
What is volatile variable in c with example?
What is main () in c?
Write a program to swap two numbers without using a temporary variable?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Do pointers store the address of value or the actual value of a variable?
What is #include stdio h?
What is the purpose of clrscr () printf () and getch ()?
List a few unconditional control statement in c.
How main function is called in c?