int형 숫자을 문자형 숫자로 바꾸는 함수
char *ft_itoa(int n);
char * 형 데이터로 리턴
malloc
테스트
printf("ft_itoa : %s\n", ft_itoa(-99999999));