[C언어] 재귀적 팩토리얼 구현 ■ 팩토리얼 구현 C언어로 재귀(순환, recursion)적 팩토리얼을 구현하면 다음과 같다. int factorial(int n) { if (n C 2021.09.28