Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
What is the output of the following C program code?
int i = 0;
for (; i <= 5; i++);
printf("%d" ,i);
1
0, 1, 2, 4, 5
2
6
3
5
4
1,2,3,4,5
What is the output of the following C program code?
int i = 0;
for (; i <= 5; i++);
printf("%d" ,i);