which header file contains main() function in c?
Answer Posted / surendra nath sahoo
Hello Friends..
Actually a header file in C language only have
four things
1:typedef
2:function prototype
3:macro definations
4:external variables
And header file is required if the return type of a function
is not int.
as main function default return type is int so header file
is not required.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
write a program fibonacci series and palindrome program in c
How pointers are declared?
What is a floating point in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is infinite loop?
Explain what is the heap?
Write a program that accept anumber in words
What are variables and it what way is it different from constants?
Can a pointer point to null?
Explain what is the difference between a string and an array?
Explain how do you search data in a data file using random access method?
Should I learn c before c++?
Who developed c language?
How we can insert comments in a c program?
What is a null string in c?