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
- BASIC
- Algospot
- BFS
- 생활코딩
- 백준
- Python
- 인프런
- udemy
- sorting
- graph
- 정수론
- C언어
- web
- Algorithm
- dfs
- JavaScript
- 따라하며 배우는 C언어
- programmers
- php
- Math
- 종만북
- greedy
- BOJ
- DP
- server
- Cleancode
- 따라하면서 배우는 C언어
- C
- String
- 따배씨
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 16.8 미리 정의된 매크로들 #line, #error 본문
따배씨 - 따라하며 배우는 C언어
16강 전처리기와 라이브러리
16.8 미리 정의된 매크로들 #line, #error
#include <stdio.h>
#include "DifferentFile.h"
void different_function(void);
int main()
{
printf("__FILE__ : %s\n", __FILE__);
// __FILE__ : /Users/leejuho/Desktop/studyC/studyC/main.c
printf("__DATE__ : %s\n", __DATE__);
// __DATE__ : May 3 2021
printf("__TIME__ : %s\n", __TIME__);
// __TIME__ : 16:31:12
printf("__LINE__ : %d\n", __LINE__);
// __LINE__ : 15
printf("__func__ : %s\n", __func__);
// __func__ : main
different_function();
// This function is different_function
// This is line 34
different_func_in_different_file();
// __FILE__ : /Users/leejuho/Desktop/studyC/studyC/DifferentFile.h
// __func__ : different_func_in_different_file
return 0;
}
void different_function()
{
printf("This function is %s\n", __func__);
printf("This is line %d\n", __LINE__);
}
- __STDC__ : C 언어 표준 만족 여부
- __STDC_HOSTED__ : 표준을 더 엄격하게 따르는지 여부
#if __STDC_VERSION__ != 201112L
#error Not C11
#endif
- __STDC_VERSION__ : 현재 사용하는 C 표준 버전
- 버전을 확인하고, 아니라면 Error 발생
#if __LINE__ != 33
#error Not line 33
#endif
- #error 조건 : 강제로 Error 발생
- 현재 33번 줄이 아니라면, 33번 줄이 아니라는 Error 발생 시킴
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 16.10 _Generic 표현식 (0) | 2021.09.07 |
---|---|
[따배씨] 16.9 #pragma 지시자 (0) | 2021.08.30 |
[따배씨] 16.7 조건에 따라 다르게 컴파일하기 (0) | 2021.08.22 |
[따배씨] 16.6 #include 와 헤더파일 (0) | 2021.08.22 |
[따배씨] 16.5 가변 인수 매크로 (0) | 2021.08.12 |
Comments