Consider the following function void test a int n cout n if n 0-03465
Consider the following function: <pre><code class="language-text"><code class="language-plaintext">void test_a(int n) { cout << n << " "; if (n>0) test_a(n-2); } </code></pre><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 Final Term - Quiz No.16.