일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 토큰경제
- html multimedia
- #3차원배열
- docker example
- git flow
- hyperledger transaction
- html id
- #binary
- #JAVASCRIPT
- #C++ has~a
- #android activity
- html video
- html code
- #2차원배열
- 하이퍼레저패브릭
- relative path
- #1차원배열
- html youtube
- #bubbleSort
- border-box
- #성적관리프로그램
- html5 new tag
- html charset
- #자바상속#자바이즈어#is~a
- html plug-in
- mac terminal command
- #CallByAddress
- html object
- #다차원포인터
- #C++ 연산자함수오버로딩
Archives
- Today
- Total
A sentimental robot
함수포인터 본문
#include <stdio.h>
#pragma warning(disable:4996);
void write(char *s)
{
printf("%s\n",s);
}
int add(int x, int y){ return x+y ;}
int sub(int x, int y){ return x-y ;}
int mul(int x, int y){ return x*y ;}
int div(int x, int y){ return x/y ;}
void main()
{
void (*g)(char *);
int (*f[4])(int,int);
int x;
int y;
f[0]=add;
f[1]=sub;
f[2]=mul;
f[3]=div;
g = write;
(*g)("hello");
while(1){
printf("What do you want?(0:add,1:sub,2.:mul,3.div)\n");
scanf("%d",&x);
y = (*f[x])(10,20);
printf("result = %d", y);
puts("\n");
}
}
'C ' 카테고리의 다른 글
atoi함수 (0) | 2018.01.03 |
---|---|
typedef structure (0) | 2018.01.03 |
strdup함수 활용예제 (0) | 2018.01.03 |
strdup함수 만들기 (0) | 2018.01.03 |
strlen함수 만들기 (0) | 2018.01.02 |