

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the correct output for the program given below?#include <stdio.h>int main ( ){ int a = 0; for (; a < 5 ; a++); printf ("%d n", a); return 0;} |
A. | 0 1 2 3 4 |
B. | 5 |
C. | 1 2 3 4 |
D. | 6 |
Answer» C. 1 2 3 4 | |