bar()1 int bar () 2 { 3 return 5; 4 } foo()5 int foo () 6 { 7 return bar() + 5; 8 } main()9 int main () 10 { 11 return foo(); 12 } 13