Consider the following function void test a int n cout n if n 0-03540
Consider the following function:<br>void test_a(int n)<br>{<br>cout << n << " ";<br>if (n>0)<br>test_a(n-2);<br>}<br>What is printed by the call test_a(4)?
This multiple choice question (MCQ) is related to the book/course vu cs301 Data Structures. It can also be found in vu cs301 Mid Term - Quiz No.3.