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