#include // let's make a new kind of loop #define until(cond) while (!(cond)) int main() { int x = 5; until (x == 0) { printf("%d\n", x); x--; } return 0; }