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