which header file contains main() function in c?
Answer Posted / ankith.v
There is no header file for main function
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
Why void main is used in c?
Why is structure padding done in c?
Can the size of an array be declared at runtime?
Explain how do you print an address?
Is null always equal to 0(zero)?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
Where are the auto variables stored?
find out largest elemant of diagonalmatrix
What is the Purpose of 'extern' keyword in a function declaration?
How are structure passing and returning implemented?
What is the difference between variable declaration and variable definition in c?
why do some people write if(0 == x) instead of if(x == 0)?
How can I sort a linked list?
What is a scope resolution operator in c?
Explain the difference between malloc() and calloc() in c?