/*
  To compile:  gcc goto.c -o goto
  To execute:  ./goto
*/

int main () {

  printf ("This is an example of using goto's and labels.\n\n");
  goto label_foo;
  printf("This printing is skipped.\n");
  
 label_foo:
  printf ("This printing is executed.\n");
  
  // good programming practice to return 0 from main when there is no error.
  return 0;
}
