Q:

WHAT ARE ALL THE SECTIONS THAT A C PROGRAM MAY/MUST HAVE?

belongs to collection: C INTERVIEW QUESTIONS AND ANSWERS

0

WHAT ARE ALL THE SECTIONS THAT A C PROGRAM MAY/MUST HAVE?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

There are many sections in a C program structure. They are,

  • Documentation section
  • Link Section
  • Definition Section
  • Global declaration section
  • Function prototype declaration section
  • Main function
  • User defined function section

main() function section is the important section in a C program as program execution starts from main() function only in C language. A C program may not have all other sections except main() function.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C INTERVIEW QUESTIONS AND ANSWERS

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
WHAT IS IDE?... >>
<< EXECUTION OF A C PROGRAM STARTS FROM WHICH FUNCTIO...