InterviewSolution
Saved Bookmarks
| 1. |
If a = 5, b = 9 calculate the value of a+ = a++ – ++b +a |
|
Answer» a + = a ++ – ++ b + a = 5 – 10 + 6 a + = 1 The value of a after execution will be 6. |
|