Y
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
inquist
2497 days ago
That's just the decrement operator and inequality operator!
link
cvs268
2495 days ago
not inequality, rather the "greater-than" operator.
"!=" would be the inequality operator... :-)
link