char형을 썼으니 ''로 감싸주기
#include <unistd.h> void ft_print_numbers(void) { char a; a = '0'; while (a <= '9') { write(1, &a, 1); a++; } }