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