DEC 30

Introducing the `—>` operator!

#include <stdio.h>
int main()
{
     int x = 10;
     while( x --> 0 ) // x goes to 0
     {
       printf("%d ", x);
     }

} 

Via Stack Overflow

blog comments powered by Disqus