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 = 10 Value of z = 5 |
|