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 is the use of parallelize in spark?
What is difference between array and pointer in c?
Under what circumstances does a name clash occur?
What is NULL pointer?
Explain how can I right-justify a string?
Differentiate fundamental data types and derived data types in C.
find the sum of two matrices and WAP for it.
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Can you think of a logic behind the game minesweeper.
What is a constant and types of constants in c?
What are the 5 organizational structures?
Write a code to generate a series where the next element is the sum of last k terms.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is pointers in c with example?
What do the functions atoi(), itoa() and gcvt() do?