diff options
Diffstat (limited to 'rushs/tinyprintf/alphabet')
| -rw-r--r-- | rushs/tinyprintf/alphabet/alphabet.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/rushs/tinyprintf/alphabet/alphabet.c b/rushs/tinyprintf/alphabet/alphabet.c new file mode 100644 index 0000000..9496c66 --- /dev/null +++ b/rushs/tinyprintf/alphabet/alphabet.c @@ -0,0 +1,13 @@ +#include <stdio.h> + +int main(void) +{ + for (char i = 'a'; i < 'z'; i++) + { + putchar(i); + putchar(' '); + } + putchar('z'); + putchar('\n'); + return 0; +} |
