/* ************************************************************************** */ /* */ /* .--. _ */ /* test17.c |o_o || | */ /* |:_/ || |_ _ ___ __ */ /* By: houtworm // \ \ __| | | \ \/ / */ /* (| | )|_| |_| |> < */ /* Created: 2023/02/21 02:58:12 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ /* Updated: 2023/02/23 21:28:09 by houtworm \___)=(___/ */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include int main(void) { int i; i = 70000; while (i <= 80000) { ft_putnbr_fd(i, 2); i++; } return (0); }