/* shortcircuit.c -- Illustration von Short-Circuiting */

int side_effect()
{
  printf("How not to be seen, Lesson 1\n");
  return 1;
}

int main ()
{
  int a = 1;

  if (a == 0
      && side_effect() == 1) {
    printf("How not to be seen, Lesson 2\n");
  }
  return 0;
}
     
