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 are the different types of data structures in c?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is unsigned int in c?
What is assert and when would I use it?
Differentiate between static and dynamic modeling.
What is a scope resolution operator in c?
Is there a built-in function in C that can be used for sorting data?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
what is the format specifier for printing a pointer value?
What are runtime error?
How can I find out the size of a file, prior to reading it in?
What is header file definition?
What is a macro?
how can f be used for both float and double arguments in printf? Are not they different types?