Another great one is the `-->` operator, pronounced "goesto".
Let me demonstrate:```#include <stdio.h>int main() { int i = 20; while (i --> 10) { printf("%d\n", i); } return 0;}```