Compare commits

...

2 Commits

Author SHA1 Message Date
Timo Schmidt 36da01d5a9 Norminetted ex01 2023-03-15 22:13:08 +01:00
Timo Schmidt 707a2daad6 Add ft_print_alphabet.c 2023-03-15 21:55:15 +01:00
1 changed files with 25 additions and 0 deletions

25
ex01/ft_print_alphabet.c Normal file
View File

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