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
- Algorithm
- greedy
- sorting
- C언어
- Math
- web
- BOJ
- Algospot
- 따라하며 배우는 C언어
- 인프런
- programmers
- 따배씨
- php
- 생활코딩
- 정수론
- 백준
- DP
- graph
- C
- dfs
- 따라하면서 배우는 C언어
- BASIC
- udemy
- BFS
- String
- Python
- Cleancode
- JavaScript
- server
- 종만북
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 16.5 가변 인수 매크로 본문
따배씨 - 따라하며 배우는 C언어
16강 전처리기와 라이브러리
16.5 가변 인수 매크로 Variadic Macros
#include <stdio.h>
#include <math.h>
/*
Variadic Macros accept a variable number of arguments.
*/
#define PRINT(X, ...) printf("Message " #X ": " __VA_ARGS__)
// ... : ellipes
// __VA_ARGS : one of the predefined macros
/*
printf(...)
stdvar.h Variadic arguments
*/
int main()
{
double x = 48;
double y;
y = sqrt(x);
PRINT(1, "x = %g\n", x);
// Message 1: x = 48
PRINT(2, "x = %.2f, y = %.4f\n", x, y);
// Message 2: x = 48.00, y = 6.9282
return 0;
}
- Macro 로 선언된 PRINT() 는 입력받은 X 값을 #X 에 대입되고, 나머지 입력값은 print() 함수로 작성되어 출력된다.
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
'Language > C' 카테고리의 다른 글
[따배씨] 16.7 조건에 따라 다르게 컴파일하기 (0) | 2021.08.22 |
---|---|
[따배씨] 16.6 #include 와 헤더파일 (0) | 2021.08.22 |
[따배씨] 16.4 함수 같은 매크로 (0) | 2021.08.12 |
[따배씨] 16.3 #define 매크로 (0) | 2021.08.05 |
[따배씨] 16.2 전처리기를 준비하는 번역 단계 (0) | 2021.08.04 |
Comments