Program Structure
#include <stdio.h>
int g = 0;
char f(int x);
main()
{
char c;
c = f(5);
. . .
}
char f(int x)
{
. . .
}
Previous slide
Next slide
Back to first slide
View graphic version