-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_print_alphabet.c
23 lines (21 loc) · 994 Bytes
/
ft_print_alphabet.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_alphabet.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rtayache <rtayache@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/30 18:03:53 by rtayache #+# #+# */
/* Updated: 2022/06/30 18:42:26 by rtayache ### ########.fr */
/* */
/* ************************************************************************** */
void ft_print_alphabet(void)
{
int a;
a = 'a';
while (a <= 'z')
{
write(1, &a, 1);
a++;
}
}