which header file contains main() function in c?
Answer Posted / mukesh
main() is pre user defined function there4 no need of header
file for it bcoz it is not a library function
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the difference between char array and char pointer?
What are 3 types of structures?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
How can I read a binary data file properly?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Is main a keyword in c?
What is the size of a union variable?
What is the use of define in c?
Why is event driven programming or procedural programming, better within specific scenario?
Is c programming hard?
Explain what is the best way to comment out a section of code that contains comments?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Write a program to know whether the input number is an armstrong number.
Why c is called object oriented language?