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

35 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_numbers.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/04 13:55:41 by whaffman #+# #+# */
/* Updated: 2024/06/05 11:15:13 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_print_numbers(void)
{
int n;
char c;
n = 0;
while (n <= 9)
{
c = n + 48;
write(1, &c, 1);
n++;
}
}
/*
int main(void)
{
ft_print_numbers();
return (0);
}
*/