Saved Bookmarks
| 1. |
Predict the output. #include <iostream.h>int main(){int a = 0; start: cout<<endI<<++a;if(a < 5) goto start; } |
|
Answer» 1 2 3 4 3 |
|