which header file contains main() function in c?
Answer Posted / raj
Please if u don't know answer then don't post comment..
Please search stdio.h file
it doesn't contain main function declaration
thanks
| Is This Answer Correct ? | 36 Yes | 0 No |
Post New Answer View All Answers
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
How can I find the modification date and time of a file?
What are predefined functions in c?
Why can’t constant values be used to define an array’s initial size?
What is void main () in c?
Explain how do you generate random numbers in c?
what are non standard function in c
Can you explain the four storage classes in C?
What is array within structure?
What do you know about the use of bit field?
What are logical errors and how does it differ from syntax errors?
What are the c keywords?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }