In C, program execution starts from the
main()
function. ... The
main function can in-turn call other
functions. When
main calls a
function, it passes the execution control to that
function. The
function returns control to
main when a return statement is executed or when end of
function is reached.
read more >>