Vidyalelo
C Programming · Q33

C Miscellaneous

Programming · C Programming · question 33

Q33

Determine Output: void main() int i=5, j=6, z; printf("%d", i+++j);

A.
12
B.
13
C.
11
Answer
D.
None of These

Answer: Option C

Solution

Answer: Option C
Solution:

The expression i+++j is treated as ((i++) + j)