Answer Posted / gg
Every C program should have at least one function.main() is
special function, from here the actual execution of the
program starts. main() is one which calls all other
functions and helps to do their job.The functions may from
library or user defined.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
When should the register modifier be used? Does it really help?
using for loop sum 2 number of any 4 digit number in c language
Place the #include statement must be written in the program?
What are the application of void data type in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How do you construct an increment statement or decrement statement in C?
Is it acceptable to declare/define a variable in a c header?
What is the purpose of clrscr () printf () and getch ()?
how to build a exercise findig min number of e heap with list imlemented?
Write a program of prime number using recursion.
What is volatile variable in c?
What is far pointer in c?
What is #define size in c?
Write a program to use switch statement.
What do you mean by command line argument?