Guys, I found this wee gem on the internet. Instead of say using a for loop to go from 10 to 0 ect you can use the -->
for example.
int x = 10;
while( x --> 0 ) // x goes to 0
{
printf("%d ", x);
}
Slán
Does anyone have there own little gems? Like the ternary operator?