The following segment should define two functions void f2 co
The following segment should define two functions: void f2() {cout
Solution
Definiting two individual functions:
// first function
void f2()
{
cout << \"During call to f2.\ \";
}// end function f2
// second function
void f3()
{
cout << \"During call to f3.\ \";
}// end function f3
