MCQOPTIONS
Saved Bookmarks
| 1. |
How many times below for loop will be executed ? #include<stdio.h> int main() { int i=0; for(;;) printf("%d",i); return 0; } |
| A. | 0 times |
| B. | 1 times |
| C. | 10 times |
| D. | Infinite times |
| Answer» E. | |