Saved Bookmarks
| 1. |
How many times the following loop will execute? int s= 0, a=0; while (a++ |
|
Answer» Answer: 5 times Explanation: output a= 5 s= 15 |
|