1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
42-1st-piscine/ended/C00/ex03/ft_print_numbers.c

15 lines
142 B
C
Raw Normal View History

2023-08-06 20:12:38 +02:00
#include <stdio.h>
#include <unistd.h>
void ft_print_numbers(void)
{
char n;
n = '0';
while (n <= '9')
{
write(1, &n, 1);
n++;
}
}