#include void func1(void); void func2(void); int main(void) { func1(); printf("Hello, world!\n"); func2(); return 0; }