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
What are pointers? Why are they used?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What does %d do?
What is logical error?
What are the 5 data types?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the code for 3 questions and answer check in VisualBasic.Net?
Write a C program in Fibonacci series.
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is an expression?
What is a const pointer?
Explain the red-black trees?
Explain is it valid to address one element beyond the end of an array?
What is the difference between far and near in c?
Can you return null in c?