Question: void test_b(int n) { if (n>0) test_a(n-2) cout < < n < < ; what is printed by call test_b(14)
void test_b(int n) { if (n>0) test_a(n-2) cout << n << " "; what is printed by call test_b(14)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
