cs50/src1/meow2.c

14 lines
142 B
C

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