Code:
for (i=...)
  {
    .
    .
    if()
      "Iwant to take next i here"
    for (j=..)
    {
      .
       if()
        "I want also  next i here"
          .
          .
    }
  }
I want to get out of i and j loop when certain if is fulfilled but I want to avoid using goto command and I want to avoid restructuring loops.
Thank you