Computer Science, asked by karthikae284, 11 hours ago

Evaluate the given arithmetic expression (Assume header files are given)
int i = 11,j;
j = i++ + ++i;
cout<<j;​

Answers

Answered by KesavanCSE
0

Answer:

24

Explanation:

i++ means i=11 and thereafter i=i+1.

++i means 11 +1 =12 and thereafter i=12.

above case shows

i=11

j= 11 + 13

j=24

Similar questions