10 points Question 2(b): Consider the following printMe(n) function. What will be the output if we execute printMe(3) fr
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
10 points Question 2(b): Consider the following printMe(n) function. What will be the output if we execute printMe(3) fr
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