0118-voidmain.c (84B)
1 int main(void); 2 int f(); 3 4 int 5 f(int a) 6 { 7 return a; 8 } 9 10 int 11 main() 12 { 13 return f(0); 14 }