Saved Bookmarks
| 1. |
How many times the following loop will execute? int S = 0, i = 0; do { S + = i;i++; } while(i < 5); |
|
Answer» 5 times loop will execute. |
|