MCQOPTIONS
Saved Bookmarks
| 1. |
If the following loop is implemented: { int num=0; do { --num; printf("%d", num); num++; }while(num>=0); } |
| A. | The loop will run infinitely many times |
| B. | The program will not enter into the loop |
| C. | There will be a compilation error reported |
| D. | A runtime error will be reported |
| Answer» B. The program will not enter into the loop | |