which header file contains main() function in c?
Answer Posted / m3th0d
main() doesn't require any header file,
header files are not the part of C language they just
provides the means of accessing input/output and other
utilities.
int main()
{
int a=10;
return 0;
}
can be compiled without including any header file :)
| Is This Answer Correct ? | 35 Yes | 3 No |
Post New Answer View All Answers
What is dynamic dispatch in c++?
Write a program to reverse a linked list in c.
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Explain how do you view the path?
How we can insert comments in a c program?
Why do we need functions in c?
What is a structure in c language. how to initialise a structure in c?
What is page thrashing?
Can we declare variable anywhere in c?
Why can’t constant values be used to define an array’s initial size?
What is #include called?
Explain the difference between malloc() and calloc() in c?
what are the facialities provided by you after the selection of the student.
Is c procedural or object oriented?
If I have a char * variable pointing to the name of a function ..