// Better design #include int main(void) { int i = 3; while (i > 3) { printf("%i\n", i); i--; } }