Dec 12, 2015

Use of goto Statement

Using goto Statement goto statement is used to jump on a particular location in a program defined by label. Label is a name given to a location.  Label is defined by a <locationName> followed by a colon. goto is use with goto <labelName>; syntax of label & goto statment 1; label:...

Dec 11, 2015

Use of Continue Statement

Using Continue Statement Continue statement is used to skip the current iteration and force to execute next iteration by skipping any code after continue statement inside a loop. In simple term whenever you encounter continue statement in a loop it will skip the current pass execute next pass and...