Home 전처리기 지시어 (include, define, ...)
Post
Cancel

전처리기 지시어 (include, define, ...)

전처리기 지시어 (Preprocessor Directive)는 프로그램을 실행시킬 때가 아닌, 컴파일할 때 동작함

#include

헤더파일 삽입 지시자

  • 컴파일러에서 기본 제공된 파일을 포함할 때 #include <filename>

  • 직접 만든 파일을 포함할 때 #include "filename"

#define

기호상수를 정의하는 지시자 보통 변수와 구분하기 위해 대문자로 작성함

예시)

1
2
#define NAME "thk"
#define PI 3.14

Ref.

https://dev-alice.tistory.com/5

This post is licensed under CC BY 4.0 by the author.

Vim 단축키 (Vim Cheat Sheet)

Libft ② 기초 작업