box-o-sand/lcthw/ex9.c

16 lines
181 B
C
Raw Normal View History

2024-04-17 00:46:08 +00:00
#include <stdio.h>
int main(int argc, char *argv[])
{
2024-04-17 00:47:34 +00:00
int i = 25;
while (i > 0) {
2024-04-17 00:46:08 +00:00
printf("%d", i);
2024-04-17 00:47:34 +00:00
i--;
2024-04-17 00:46:08 +00:00
}
// need this to add a final newline
printf("\n");
return 0;
}