InterviewSolution
Saved Bookmarks
| 1. |
Consider the following function int unknown(int n) { int i, j, k = 0; for (i = n/2; i <= n; i++) for (j = 2; j <= n; j = j * 2) k = k + n/2; return k; }What is the return value of the function? (GATE CS 2013)(A) (B) (C) (D) (A) A(B) B(C) C(D) D |
| Answer» | |