10 points Question 2(b): Consider the following printMe(n) function. What will be the output if we execute printMe(3) fr
Posted: Sat Nov 27, 2021 10:30 am
Question 2(b): Consider the following printMe(n) function. What will be the output if we execute printMe(3) from the main function? Show the block diagram. void printMe(int n){ if(n 0) return; else{ printf("%d ",n); printMe(n-1); printf("%d ",n); } }
10 points