전처리기 (Preprocessor) 기능 파일 포함시키기 #include 특정 파일을 현재 위치에 첨부하여 하나의 파일처럼 컴파일한다. 조건부 컴파일 #if, #elif, #else, #ifdef, #ifndef, #endif 등 조건에 해당되는 코드만 실행한다. defined 키워드와 같이 사용하여 복합적으로 정의할 수 있다. OS에 따라 다른 파일을 포함시키는 예제 #ifdef __unix__ /* __unix__ is usually defined by compilers targeting Unix systems */ # include #elif defined _WIN32 /* _Win32 is usually defined by compilers targeting 32 or 64 bit Windows ..