Q33
Determine Output: void main() int i=5, j=6, z; printf("%d", i+++j);
A.
12
B.
13
C.
11
AnswerD.
None of These
Answer: Option C
Solution
Answer: Option C
Solution:
The expression i+++j is treated as ((i++) + j)