[volume. vol.Ⅰ]----------
목차
Chapter 1 소개(introduction) = 9
1. 전뇌의 구성 요소(component of computer) = 10
2. 정서가 필요한 이유(reason for using software) = 11
3. 가능한 일(possible things) = 13
4. 필요한 것(requirement) = 14
5. 특징(features) = 16
6. 역사(history) = 18
7. 다른 언어(another languages) = 20
개념 문제 = 23
Chapter 2 정수의 표현(representation of integers) = 25
1. 진수의 종류(kind of number format) = 26
2. 진수 변환 1(conversion of number format one) = 27
3. 진수 변환 2(conversion of number format two) = 34
4. 음수의 표현 - 2의 보수(representation of negative integers-two's complement) = 39
개념 문제 = 43
Chapter 3 실행(run) = 45
1. 과정(procedure) = 46
2. 오류 수정(debug) = 51
3. 예약어(reserved words) = 54
4. 구성 요소(component) = 61
5. 구두점(putctuation) = 72
6. 식별자명(identifier name) = 77
개념 문제 = 79
Chapter 4 출력(print) = 83
1. 기초적 사용법(basic usage of print) = 85
2. 제어 문자(control sequence) = 88
3. 자료형의 종류(kinds of data types) = 90
4. 변수형의 크기 = 96
5. 상수와 변수의 차이(difference between constant and variable) = 99
6. 형식 지정자(escape character) = 101
7. 문자 출력(print character) = 108
8. 정수 출력(print integer) = 113
9. 실수 출력(print real number, print floating number) = 125
10. 문자열 출력(print string) = 132
11. 범의 밖(out of range) = 136
12. 단일 문자 전용 출력 함수(putchar) = 147
13. 문자열 전용 출력 함수(puts) = 152
개념 문제 = 157
Chapter 5 입력(scan) = 161
1. 기본적 사용법(basic usage of scanf) = 163
2. 주소 연산자(address operator) = 166
3. 형식 지정자(escape character) = 171
4. 선언(declaration) = 178
5. 문자 입력(scan character) = 181
6. 정수 입력(scan integer) = 186
7. 실수 입력(scan real number, scan floating-point number) = 195
8. 문자열 입력(scan string) = 198
9. 범위 밖(out of range) = 200
10. 단일 문자 전용 입력 함수(getchar) = 209
11. 문자열 전용 입력 함수(gets) = 214
개념 문제 = 217
부록 : 미국 표준 부호(ASCII:american standard code for information interchange) = 219
[volume. vol.Ⅱ]----------
목차
Chapter 6 연산자(operator) = 7
1. 기본 연산자(basic operator) = 11
2. 단항 연산자(uniary operator) = 19
3. 이항 연산자 1(binary operator one) = 42
4. 삼항 연산자(ternary operator) = 73
5. 이항 연산자 2(binary operator two) = 79
개념 문제 = 84
정서 만들기 = 88
Chapter 7 흐름 변화(flow change) = 91
1. 선택문(selection) = 96
2. 반복문(repetition) = 120
3. 분기문(branch statement) = 165
개념 문제 = 175
정서 만들기 = 178
Chapter 8 함수(function) = 185
1. 3가지 종류의 함수(three kinds of functions) = 189
2. 3가지 요소(three component) = 193
3. 함수 이름의 값(value of function name) = 199
4. 값에 의한 호출(call by value) = 209
5. 변수의 사용 범위(scope of variable) = 218
개념 문제 = 226
정서 만들기 = 230
Chapter 9 배열(array) = 235
1. 선언(declaration) = 239
2. 정수 배열(integer array) = 245
3. 실수 배열(real number array) = 256
4. 문자 배열(character array) = 262
5. 배열의 복사 = 274
6. 값 연산자 *(value operator ampersand) = 277
7. 주소 연산자 &(address operator ampersand) = 279
8. 배열이름이 실인수(array name is real parameter) = 283
개념 문제 = 285
정서 만들기 = 289