piscine/c00/ex01/ft_print_alphabet.c
Willem Haffmans 607ce08c18 all
2024-09-10 00:18:01 +02:00

26 lines
1016 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_alphabet.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/04 13:54:05 by whaffman #+# #+# */
/* Updated: 2024/06/04 14:37:12 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_print_alphabet(void)
{
char c;
c = 'a';
while (c <= 'z')
{
write(1, &c, 1);
c++;
}
}