Electrical and Computer Engineering
1 of 30
UAH
CPE 112
The Elements of C++ Programs
•In C ++, all subprograms are called functions. •Every C program must have a function named main.
•Other functions are called by main.
•Program execution returns to main when the callee function completes execution.
•