Q. 7 Consider the following C-program fragment in which i, j,and n are integer variables.
for (i = n, j = 0; i > 0; i/2, j += i);
Let Val (j) =denote the value stored in the variable j after termination of the for loop. Which one of the following is true? Answer: (C)
Explanation: