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
- JavaScript
- 따배씨
- greedy
- 생활코딩
- Algorithm
- Cleancode
- 종만북
- String
- DP
- 따라하며 배우는 C언어
- 백준
- 정수론
- BOJ
- sorting
- C
- BFS
- Algospot
- udemy
- 인프런
- Math
- server
- dfs
- php
- BASIC
- graph
- C언어
- web
- Python
- programmers
- 따라하면서 배우는 C언어
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 16.10 _Generic 표현식 본문
따배씨 - 따라하며 배우는 C언어
16강 전처리기와 라이브러리
16.10 _Generic 표현식
#include <stdio.h>
/*
Generic selection expression
- Generic programing : code is not specific to a particular type
_Generic : C11 keyword
*/
#define MYPYPE(X) _Generic((X), \
int : "int", \
float: "float", \
double : "double", \
default: "other" \
)
int main()
{
int d = 5;
printf("%s\n", MYPYPE(d));
// int
printf("%s\n", MYPYPE(2.0 * d));
// double
printf("%s\n", MYPYPE(3L));
// other
printf("%s\n", MYPYPE(&d));
// other
return 0;
}
- C++ 에서 활용도가 높은 표현
- Generic programing : 코드가 특정한 자료형에 대해서만 작동하지 않고, 각각의 자료형대해 동작하도록 하는 programing
#define MYPYPE(X) _Generic((X), \
int : "int", \
float: "float", \
double : "double", \
default: "other" \
)
- 각각의 자료형에 대해 다른 출력
#define MYPYPE(X) _Generic((X), \
int : (x + 123)
)
- 표현식을 넣는 것도 가능
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 16.12 라이브러리 (0) | 2021.10.04 |
---|---|
[따배씨] 16.11 inline 함수 (0) | 2021.09.07 |
[따배씨] 16.9 #pragma 지시자 (0) | 2021.08.30 |
[따배씨] 16.8 미리 정의된 매크로들 #line, #error (0) | 2021.08.30 |
[따배씨] 16.7 조건에 따라 다르게 컴파일하기 (0) | 2021.08.22 |
Comments