276 views
0 votes
0 votes
Why this does not skips the part of loop.         For (i=1;i<=15;i++).                                                   Cout<<"*"<<endl;                                                      for(j=1;j<=18;j++).                                                       Cout<<''*"<<;                                                          if((i==4)&&(j<5)).                                                  Continue;

1 Answer

0 votes
0 votes
"contiue"  statement  terminates the further iterations of for loop since If statement is not in for loop so it will execute properly.

No related questions found