โช Choose the correct option.
What will be the output of the following program on GCC?
include
int main(){
int i=1,j=1;
for(;j;printf("%d %d ",i,j))
j = i++<=5;
return 0;
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
include
int main(){
int i=1,j=1;
for(;j;printf("%d %d ",i,j))
j = i++<=5;
return 0;
}