Up through lcthw ex9

This commit is contained in:
2024-04-16 20:46:08 -04:00
parent 7e07054a70
commit 726566bb23
3 changed files with 17 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
#include <stdio.h>
int main(int argc, char *argv[])
{
int i = 0;
while (i < 25) {
printf("%d", i);
i++;
}
// need this to add a final newline
printf("\n");
return 0;
}