Consider the following program:
main ()
{
int c = 50;
for(; c;)
c--;
printf("%d \n" ,c);
}
The output of the program will be:
1
-50
2
50
3
0
4
None of these
Consider the following program:
main ()
{
int c = 50;
for(; c;)
c--;
printf("%d \n" ,c);
}
The output of the program will be: