1#include <stdio.h>2 3void4AFunction()5{6 printf ("I am a function.\n");7}8 9int10main ()11{12 AFunction();13 return 0;14}15