Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

List some of the dynamic data structures in C?

1249


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

1066


write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)

2109


Why are algorithms important in c program?

1126


Why do we use stdio h and conio h?

1094


How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?

16790


With the help of using classes, write a program to add two numbers.

1044


Write a program to identify if a given binary tree is balanced or not.

1166


What are nested functions in c?

1026


What is nested structure?

1048


Do you know the purpose of 'register' keyword?

1023


‎How to define structures? · ‎

1091


What language is lisp written in?

1271


Write a program of prime number using recursion.

1095


When is a void pointer used?

1244