Add ft_print_alphabet.c

This commit is contained in:
Timo Schmidt 2023-03-15 21:55:15 +01:00
parent dec94a9a15
commit 707a2daad6
1 changed files with 22 additions and 0 deletions

22
ex01/ft_print_alphabet.c Normal file
View File

@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_alphabet.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/15 21:50:37 by tischmid #+# #+# */
/* Updated: 2023/03/15 21:54:06 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_print_alphabet(void)
{
unsigned int i = 97;
while (i < 123) {
write(1, &i, 1);
i++;
}
}