MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program in Turb C (under DOS)? #include int main() { int arr[5], i=0; while(i |
| A. | 1, 2, 3, 4, 5, |
| B. | Garbage value, 1, 2, 3, 4, |
| C. | 0, 1, 2, 3, 4, |
| D. | 2, 3, 4, 5, 6, |
| Answer» C. 0, 1, 2, 3, 4, | |