1 #include <stdio.h> 2 3 void call_me()4 call_me() { 5 printf("I was called"); 6 } 7 8 int main()9 main() 10 { 11 call_me(); 12 return 0; 13 } 14