Plase look at this programme.
int i=0;
while(i<30){
if(i==20)
continue;
prinf("%d ",i++);
}
As for the programme the i value should be print upto 19 and then it will have to be in an infinite loop, but this programme dosen't prints any value. why?
					int i=0;
while(i<30){
if(i==20)
continue;
prinf("%d ",i++);
}
As for the programme the i value should be print upto 19 and then it will have to be in an infinite loop, but this programme dosen't prints any value. why?
Comment