Asked by
ankit gupta
in
Computers & Technology
at
6:05 PM on November 27, 2008
Kamlesh B's Answer
Basic structure of a C program is
/* Documentation section */
/* Link section */
/* Definition section */
/* Global declaretion section */
/* Function section */
(return type) (function name) (arguments...)
void main()
{
Declaration part
Executable part (statements)
}
/* Sub-program section */
(return type) (function name 1) (arguments...)
(return type) (function name 2) (arguments...)
.
.
.
(return type) (function name n) (arguments...)
Answered at
6:48 PM on November 27, 2008
Read all answers