Latest Gate Aptitude Question SOLUTION: Consider the following C function: int f(int n) { static int are = 0; If (n < = 0) return 1; If (n > 3) { r = n; return f (n – 2) + 2; } return f(n – 1) + r; } What is the v