C/C++ 예약어(reserved word, keyword)
1. 컴파일러에 의해 미리 의미가 정해져 있는 32~44개의 단어 2. 항상 소문자로만 사용(C99 이전) 3. C99에서 추가된 예약어 - inline, restrict, _Bool, _Complex, _Imaginary 기능별 분류 예약어 제어문 - 반복 for, while, do 제어문 - 선택 if, else, switch, case, default 제어문 - 점프 break, continue, goto, return 자료형 char, int, short, long, float,double, unsigned, struct, union, typeof, enum, void 기억 클래스 auto, static, extern, register 기타 const, sizeof, volatile 4. 총 44..