IDE #gcc compiler 썸네일형 리스트형 [K.N.K C Programming 정리] Chap 2. C Fundamentals 안녕하세요 여러분! 2단원을 가져와봤습니다! C의 기초를 설명해주는 단원입니다. 새로 알게 된게 많았던거 같아요. ㅎㅎ 바로 드가봅시다! Chap2. C Fundamentals One man's constant is another man's variable. 2.1 Writing a Simple Program 아주 간단한 코드와 함께 천천히 시작해보자. pun.c 라는 프로그램을 작성했다고 해보자. 코드는 다음과 같다. #include int main(void) { printf("To C, or not to C : that is the question.\n"); return 0; } 우선은 첫 줄부터 보자. #include 이것은C의 표준 I/O(input/output) 라이브러리의 정보를 여러분의 프로.. 더보기 이전 1 다음