in reply to how to jump to some specific line in my code ?

Hi ankit.tayal560,

As others have already pointed out, goto LABEL should nowadays basically be avoided at all costs. GrandFather already showed you subroutines and conditionals (if), I just wanted to add something to the general list of ways to control program flow: the loop control statements next, last and redo. The advantage of these over goto is that they operate on a block of code, which has its own scope and is visible in the structure of the code. Note that the loop control statements still allow a bit of evil: they can be used across the boundaries of subroutines, which luckily generates a warning.

Regards,
-- Hauke D