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