which header file contains main() function in c?
Answer Posted / reshma pawar
main is not included in any header file
It is just neaming convention for starting
the execution of program and main is not reserved
word also
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is an endless loop?
Which header file is used for clrscr?
What is a stream?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is difference between class and structure?
Do pointers need to be initialized?
Explain pointers in c programming?
What is a structure and why it is used?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
When should the volatile modifier be used?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is the use of sizeof () in c?
Apart from dennis ritchie who the other person who contributed in design of c language.
What is the difference between single charater constant and string constant?