// --> is not an operator on its own it is -- and > // But seems someone want to get their hands dirty :p int i = 5; while (i --> 0) // i will be decreased at each iteration { printf("%d\n", i); }