InterviewSolution
Saved Bookmarks
| 1. |
I Need An Immediate Answer For This Question |
|
Answer» 70Explanation:As the given expression is S=(R--)+(++R) with R=35 INITIALLY.Although R-- initially represents 35 as it is POST decrementation.As soon as it comes out of the BRACKET completing evaluation, R becomes 34 as it is decremented++R is a pre incrementation phrase. So ++R gives 34+1=35Therefore, (R--)+(++R) = 35+35 = 70So, S=70 |
|