Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 생활코딩
- C언어
- greedy
- 종만북
- String
- BASIC
- Python
- sorting
- JavaScript
- BOJ
- Algospot
- graph
- dfs
- C
- 따라하면서 배우는 C언어
- server
- 따배씨
- udemy
- Cleancode
- web
- 인프런
- 따라하며 배우는 C언어
- 백준
- Algorithm
- 정수론
- Math
- php
- DP
- BFS
- programmers
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 9.8 팩토리얼 예제 본문
따배씨 - 따라하며 배우는 C언어
9강 함수
9.8 팩토리얼 Factorial 예제
#include <stdio.h>
long loop_factorial(int n);
long recursive_factorial(int n);
int main(){
int num = 5;
printf("%ld\n", loop_factorial(num));
printf("%ld\n", recursive_factorial(num));
return 0;
}
long loop_factorial(int n){
long result;
for (result = 1; n > 1; n--){
result *= n;
}
return result;
}
long recursive_factorial(int n){
if (n <= 0){
return 1;
}
return n * recursive_factorial(n-1);
}
- return n * recursive_factorial(n-1);
- tail(end) recursion: return 에서 재귀 호출 하는 구조
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 9.10 피보나치 예제와 재귀 호출의 장단점 (0) | 2021.05.30 |
---|---|
[따배씨] 9.9 이진수 변환 예제 (0) | 2021.05.30 |
[따배씨] 9.6 재귀 호출 ~ 9.7 재귀호출과 스택 (0) | 2021.05.30 |
[따배씨] 9.5 지역 변수와 스택 Stack (0) | 2021.05.30 |
[따배씨] 9.4 변수의 영역과 지역 변수 (0) | 2021.05.27 |
Comments