C언어 기본 구조 알아보기! C언어 코딩에 앞서 예시를 통해 C언어 기본 구조를 알아보려 합니다. C언어 예시 코드 #include int main(void) { printf("채널.Security\n"); return 0; } #include -> #include는 전처리기이기에 include 앞에 #이 사용됨. (#은 전처리기를 호출하는 특별한 문법) ※ 전처리기란? 헤더 파일 호출 방법 #include -> 시스템 헤더 파일을 불러올 때 사용합니다. e.g., stdio.h, math.h, stdlib.h, time.h, string.h, etc. 시스템 헤더 파일 더보기 stdio.h : 표준 입출력에 관련된(파일 입출력 포함) 함수들을 정의합니다. math.h : abs(), pow(), sqr..