Update
[less_retarded_wiki.git] / downto.md
blob0911bf34ecd7c7c2ae1870381f9c2b117dd3bd4b
1 # Downto Operator
3 In [C](c.md) the so called "downto" operator is a [joke](jokes.md) played on nubs. It goes like this: Did you know C has a hidden downto operator `-->`? Try it:
5 ```
6 #include <stdio.h>
8 int main(void)
10   int n = 20;
12   while (n --> 10) // n goes down to 10
13     printf("%d\n",n);
15   return 0;
17 ```
19 Indeed this compiles and works. In fact `-->` is just `--` and `>` operators.