B. What would be displayed by the line:
cout <<
ilocation1++/ilocation2 + ilocation1 - ilocation2 * 3 + 8;
Why??
ilocation1++/ilocation2
+ ilocation1 - ilocation2 * 3 + 8 =
51
/ 5 +
51 - 5
* 3 + 8 =
10 +
51 - 15 + 8 =
61 - 15 + 8 =
46 + 8 =
54
***NOTE: variable ilocation1 now contains the value 52