

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following program segment? main() { int i = 1; do { printf(“%d..”, i); } while(i--); } |
A. | 0..1.. |
B. | 1..0.. |
C. | 0 |
D. | -1 |
Answer» C. 0 | |