
/* BUG ZONE!!!
Example: if...else statement */

#include <stdio.h>

void useit(void);

int i1,i2;

main()
{
  int lucky;

useit();
useit();
useit();
useit();
  
/*
  printf("Enter your lucky number: ");
  scanf("%i", &lucky);
  
  if (lucky == 7)  
     { 
       printf("Your lucky number is %i, same as mine!\n", lucky);
       printf("more statements here %i\n",i2);
     }
  else
    { printf("Your lucky number is %i\n", lucky); 
      printf("Same here %d\n",i2);
    }
*/
}

void useit(void)
{
   auto int i=1;

  i += 1;
  printf("%d test the static variable\n",i);

}
