InterviewSolution
Saved Bookmarks
| 1. |
Int x=5;x=(x++)*2+3*(- - x); |
|
Answer» 25Explanation:x = x++ * 2 + 3 * --xx= 5 * 2 + 3 * 5X= 10 + 15x= 25 |
|