experimental.c 225 B

12345678910111213141516
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. int i = 0;
  5. if (i > 0) {
  6. printf("This doesn't happen.\n");
  7. printf("Neither does this.\n");
  8. }
  9. i = i + 1;
  10. if (i > 0) {
  11. printf("This does happen.\n");
  12. }
  13. return 0;
  14. }