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