Hacker News new | ask | show | jobs
by JeromeLon 2497 days ago
No mention of the downto (-->) operator?

  int x = 10;
  while (x --> 0) {
    printf("%d ", x);
  }
1 comments

That's just the decrement operator and inequality operator!
not inequality, rather the "greater-than" operator.

"!=" would be the inequality operator... :-)