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
List some of the dynamic data structures in C?
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
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)
Why are algorithms important in c program?
Why do we use stdio h and conio h?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
With the help of using classes, write a program to add two numbers.
Write a program to identify if a given binary tree is balanced or not.
What are nested functions in c?
What is nested structure?
Do you know the purpose of 'register' keyword?
How to define structures? ·
What language is lisp written in?
Write a program of prime number using recursion.
When is a void pointer used?