goto

  Syntax: 
  goto Jumppoint;
  
  Jumppoint: e.g. instruction function

cpp Sourcecode Example

#include <iostream> /* including standard library */
 
using namespace std;
int main( void ){
 
int i;
 
for (i=0;i<=99;i++) {
    if (i==42) {
        goto jump_point;
    }
}
 
jump_point: cout << "Found the answer " << i << " ... is this right ?" << endl;
 
return 0;
}
  output
  Found the answer 42 ... is this right ?