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 the loop |
| C. | there will be compilation error reported |
| D. | a run time error will be reported |
| Answer» D. a run time error will be reported | |