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?
for (i = 1; i < 5; i + = 3)
{}
printf("%d",i);
1
1
2
4
3
7
4
8
What is the output of the following C program code?
for (i = 1; i < 5; i + = 3)
{}
printf("%d",i);