Continue statment
I am new to C, thus encountered with this, Continue statement is for skipping the iteration but here my code is int i = 0; do { if(i== 10)continue; printf("\n This is = %d",i); i++; } while (i<20); My understanding is that it will skip just This is = 10 and rest it will print… Read More Continue statment