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 / aarti giri
last function in the program
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Should I learn c before c++?
Why is struct padding needed?
What is the difference between volatile and const volatile?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
how to create duplicate link list using C???
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Why do we need functions in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What are the 4 types of functions?
What are enums in c?
What is FIFO?
What are the usage of pointer in c?
Explain the difference between exit() and _exit() function?
what is recursion in C