InterviewSolution
Saved Bookmarks
| 1. |
What will be the values of i and z after the following code is executed :int i = 0;int z = 10; do { i = i + 2; z - -;while (i < 10); |
|
Answer» Value of i will be 10 Value of z will be 5 |
|