일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- hyperledger transaction
- html youtube
- 토큰경제
- html id
- html5 new tag
- git flow
- #android activity
- border-box
- html code
- html charset
- #자바상속#자바이즈어#is~a
- #C++ has~a
- #C++ 연산자함수오버로딩
- #CallByAddress
- #bubbleSort
- #2차원배열
- #binary
- html video
- #JAVASCRIPT
- docker example
- 하이퍼레저패브릭
- #다차원포인터
- relative path
- #성적관리프로그램
- html plug-in
- mac terminal command
- html multimedia
- #3차원배열
- html object
- #1차원배열
Archives
- Today
- Total
목록#헤더파일 (1)
A sentimental robot
Recursive Function making header file
#include #include "header.c" #pragma warning(disable:4996) void main() { int num; printf("factorial number input :"); scanf("%d", &num); printf("facorial %d = %d\n", num ,recursiveF(num)); } int recursiveF(int num) { if (num == 1) return 1; return num*recursiveF(num - 1);} // 별도의 소스파일에 int recursiveF(int num); 선언하고 이 함수를 쓰고 싶은 파일의 선처리부에 header.c 을 헤더파일로 선언header.cint recursiveF(int num);
C
2018. 1. 2. 13:12