Exercise 00: ft_iterative_factorial Create an iterated function that returns a number. This number is the result of a factorial operation based on the number given as a parameter. Allowed Function: None C05에서는 iterative와 recursive에 대한 문제가 주를 이룬다. 특히 recursive의 개념을 익히기 위한 프로젝트라는 생각이 든다. 이 문제는 iterative를 적용한 문제인데, factorial을 iterative로 구현하는 것이다. iterative는 반복문을 이용하여 반복하는 방식이고, recursive는 함수 자체를 해당..