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


Please Help Members By Posting Answers For Below Questions

What is the purpose of main( ) in c language?

866


Why c is called a middle level language?

817


What is a sequential access file?

861


Why is C language being considered a middle level language?

843


What are the main characteristics of c language describe the structure of ac program?

928


Can math operations be performed on a void pointer?

746


In a switch statement, what will happen if a break statement is omitted?

810


"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

876


How is a macro different from a function?

856


How can I implement sets or arrays of bits?

800


Explain how can I prevent another program from modifying part of a file that I am modifying?

854


Difference between goto, long jmp() and setjmp()?

940


Compare interpreters and compilers.

813


What is string in c language?

825


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

2883