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
Is it better to use malloc() or calloc()?
What is the most efficient way to count the number of bits which are set in an integer?
I need testPalindrome and removeSpace
#include
Can we add pointers together?
Explain the difference between the local variable and global variable in c?
What is the difference between c and python?
Is c is a middle level language?
Whats s or c mean?
State the difference between realloc and free.
What is an example of structure?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Is it better to use a macro or a function?
In C, What is the #line used for?
What is scope rule in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array