Answer Posted / sanjay bhosale
Every c program execution starts from startup procedure which internally calls exit(main({parameters here})).
so to start execution we need main() function in our program.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the preprocessor categories?
What is use of pointer?
Why does everyone say not to use gets?
Are there any problems with performing mathematical operations on different variable types?
What is the difference between malloc calloc and realloc in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
what do you mean by enumeration constant?
Where static variables are stored in c?
Did c have any year 2000 problems?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What are the key features in c programming language?
What is the value of uninitialized variable in c?
What is a dynamic array in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Can we declare variables anywhere in c?