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

Why is c still so popular?

614


What are header files why are they important?

576


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

643


Which driver is a pure java driver

987


explain what are actual arguments?

630






What is the need of structure in c?

562


What does it mean when a pointer is used in an if statement?

598


Explain argument and its types.

598


Explain how can a program be made to print the line number where an error occurs?

690


A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

1770


write a c program to calculate sum of digits till it reduces to a single digit using recursion

2716


What Is The Difference Between Null And Void Pointer?

638


What is an array in c?

592


What are the general description for loop statement and available loop types in c?

685


Add Two Numbers Without Using the Addition Operator

351