then it just increment the value of x, then continue with the next iteration, it wont execute the rest body of the loop, so that value of x is not printed for the value 5. Continue statement is having the meaning only if you use with in the loop. ...
If its true it continues with the next statement in the loop. If its false then it skips the remaining statements if any in the loop and goes to the next iteration of the loop.Unlike check continue does not have any condition. When a continue stmt is encontered within a loop the remain...