Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
Consider the following program
main()
{
int x = 0, i, j;
for (i = 0, j = 10; i < 5,j>0; i+=2, j--)
++x;
printf("%d",x);
}
The output of the above program will be
1
10
2
0
3
5
4
None of the above