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