fractol/libft/tests/mandatory/putnbr_fd/test20.c

28 lines
1.0 KiB
C
Raw Normal View History

2023-03-07 05:31:00 +01:00
/* ************************************************************************** */
/* */
/* .--. _ */
/* test20.c |o_o || | */
/* |:_/ || |_ _ ___ __ */
/* By: houtworm <codam@houtworm.net> // \ \ __| | | \ \/ / */
/* (| | )|_| |_| |> < */
/* Created: 2023/02/21 02:58:12 by houtworm /'\_ _/`\__|\__,_/_/\_\ */
/* Updated: 2023/02/23 21:23:52 by houtworm \___)=(___/ */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
int main(void)
{
int i;
i = 2000000;
while (i <= 2010000)
{
ft_putnbr_fd(i, 2);
i++;
}
return (0);
}