-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_print_numbers.c
23 lines (21 loc) · 994 Bytes
/
ft_print_numbers.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_numbers.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rtayache <rtayache@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/30 18:10:30 by rtayache #+# #+# */
/* Updated: 2022/06/30 18:43:57 by rtayache ### ########.fr */
/* */
/* ************************************************************************** */
void ft_print_numbers(void)
{
char f;
f = '0';
while (f <= '9')
{
write(1, &f, 1);
f++;
}
}