1 #include <stdio.h> 2 3 extern void common(void); 4 5 int main(int argc, char *argv[]) 6 { 7 printf("hello from prog2.c\n"); 8 common(); 9 return 0; 10 } 11