

MCQOPTIONS
Saved Bookmarks
1. |
What is the right choice, if the following loop is implemented?void main(){int num = 0;do{--num;printf("%d", num);}while( ++num >= 0 );} |
A. | run time error will be generated. |
B. | he program will not enter into the loop. |
C. | here will be a compilation error reported. |
D. | he loop will run infinitely many times. |
E. | rints the value of 0 one time only. |
Answer» E. rints the value of 0 one time only. | |