show_bar()1 int show_bar () 2 { 3 return 1; 4 } show_foo()5 int show_foo () 6 { 7 return show_bar (); 8 } 9