Program Structure
#include <stdio.h>
#include <. . . >
int f1(int a, . . .);
int f2(void);
int f3(. . .);
main()
{
. . .
}
int f1(int a, . . . )
{
}
main() function call other functions.
A function can call any other functions, including itself.
Prototypes
Previous slide
Next slide
Back to first slide
View graphic version