This commit is contained in:
2025-02-09 09:16:37 +03:00
parent 24d05e18d6
commit 9e90bec9f7
7 changed files with 190 additions and 1 deletions

View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main(void) {
for(int i = 0; i < 128; i++) {
if(i % 10 == 0) {
printf(" %c\n", i);
} else {
printf(" %c", i);
}
}
return 0;
}