Evaluate the given arithmetic expression (Assume header files are given)
int i = 11,j;
j = i++ + ++i;
cout<<j;
Answers
Answered by
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
Social Sciences,
6 hours ago
Math,
6 hours ago
Geography,
11 hours ago
Social Sciences,
11 hours ago
Math,
8 months ago
English,
8 months ago