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