Saved Bookmarks
| 1. |
Predict the output of the following C++ statements.int a = -5, b = 3, c = 4; C+ = a++ + –b;cout<<a<<b<<c; |
|
Answer» a = -4, b = 2 and c = 1 |
|