top | item 13091920

(no title)

privacyfornow | 9 years ago

The issue I have with it is not evident in your code but add another printf after the while and it becomes slightly more problematic:

  int i = 3;
  while (i--) {
      printf("%d, ", i);    // What does this print?
  }
  printf("%d, ", i);

discuss

order

No comments yet.