|
|
|
|
|
by nstbayless
1209 days ago
|
|
Here's another one. Handy "syntax" that makes it possible to iterate an unsigned type from N-1 to 0. (Normally this is tricky.) for (unsigned int i = N; i --> 0;)
printf("%d\n", i); This --> construction also works in JavaScript and so on. |
|