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
- DP
- 백준
- BASIC
- 따배씨
- php
- 정수론
- graph
- 인프런
- server
- Python
- web
- 생활코딩
- 따라하면서 배우는 C언어
- JavaScript
- dfs
- BFS
- C언어
- sorting
- 따라하며 배우는 C언어
- C
- Algorithm
- BOJ
- Math
- programmers
- String
- udemy
- Cleancode
- 종만북
- Algospot
- greedy
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 14.22 함수 포인터의 사용 방법 본문
따배씨 - 따라하며 배우는 C언어
14강 구조체_2
14.22 함수 포인터 Function Pointer 의 사용 방법
#include <stdio.h>
#include <ctype.h> // toupper(), tolower()
void ToUpper(char* str){
while(*str){
*str = toupper(*str);
str++;
}
}
void ToLower(char* str){
while (*str) {
*str = tolower(*str);
str++;
}
}
int main(){
char str[] = "Hello, World";
void (*pf)(char*);
pf = ToUpper; // Name of a function is a pointer
// pf = &ToUpper; //Acceptable
// pf = ToUpper(str); // Not acceptible in C
printf("String literal %lld\n", (long long)("Hello World!"));
// String literal 4294983546
printf("Function pointr %lld\n", (long long)ToUpper);
// Function pointr 4294983056
printf("Variable %lld\n", (long long)str);
// Variable 140732920755323
(*pf)(str);
//pf(str); //K&R X, ANSI OK
printf("ToUpper %s\n", str);
// ToUpper HELLO, WORLD
pf = ToLower;
pf(str);
printf("ToLower %s\n", str);
// ToLower hello, world
return 0;
}
void (*pf)(char*);
- 함수 포인터를 통해서 함수를 실행하기 위하여, 함수 포인터의 선언에서 parameter 와 return type 이 필요함
#include <stdio.h>
#include <ctype.h> // toupper(), tolower()
void UpdateString(char * str, int(*pf)(int)){
while(*str){
*str = (*pf)(*str);
str++;
}
}
int main(){
char str[] = "Hello, World";
UpdateString(str, toupper);
printf("ToUpper %s\n", str);
//ToUpper HELLO, WORLD
UpdateString(str, tolower);
printf("ToLower %s\n", str);
//ToLower hello, world
return 0;
}
void UpdateString(char * str, int(*pf)(int)){
while(*str){
*str = (*pf)(*str);
str++;
}
}
- 함수 포인터를 함수의 parameter 로 사용
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 14.24 복잡한 선언 Declaration 을 해석하는 요령 (0) | 2021.07.13 |
---|---|
[따배씨] 14.23 자료형에게 별명을 붙여주는 typedef (0) | 2021.07.13 |
[따배씨] 14.21 함수 포인터의 원리 (0) | 2021.07.11 |
[따배씨] 14.20 이름 공간 공유하기 (0) | 2021.07.07 |
[따배씨] 14.19 열거형 연습문제 (0) | 2021.07.07 |
Comments