foo(void)1 int foo(void) 2 { 3 return 100; 4 } 5 main()6 main() 7 { 8 int x; 9 10 x = foo(); 11 } 12 _main()13 _main() 14 { 15 } 16