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 the purpose of main( ) in c language?
Why c is called a middle level language?
What is a sequential access file?
Why is C language being considered a middle level language?
What are the main characteristics of c language describe the structure of ac program?
Can math operations be performed on a void pointer?
In a switch statement, what will happen if a break statement is omitted?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
How is a macro different from a function?
How can I implement sets or arrays of bits?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Difference between goto, long jmp() and setjmp()?
Compare interpreters and compilers.
What is string in c language?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;