1 int foo(); 2 int bar(); 3 int baz(int); 4 5 int main() 6 { 7 /* Use comma operator to sequence evaluation of bar and foo. */ 8 return baz((bar(), foo())); 9 } 10 11 int foo() 12 { 13 return 0; 14 } 15