Question 17 What is the output of this C++ program? A 910 B 920 C 870 D 900 Programming-for-Output-ProblemsFunctionsISRO-2017 MayVideo-Explanation Question 17 Explanation: Step-1: In […]
Question 23 Consider the function in C code : Cal(a, b) { if(b!=1){ if(a!=1){ printf(“*”); Cal(a/2,b); } else{ b=b-1; Cal(10,b); } }} How many times * […]