1.

C Programming : Consider the following programint n(int i){ static int a=0;if(i3){a=i;return n(i-2)+2;}return n (i-1)+a;}What is the value of f(5)?

A. 5
B. 10
C. 12
D. 18
Answer» E.


Discussion

No Comment Found