로딩
티스토리 데이터 처리 중입니다.

[쉽게 풀어쓴 C언어 Express 개정4판] 7장 Exercise & Programming

 [쉽게 풀어쓴 C언어 Express 개정4판] 7장 Exercise & Programming

7장 Exercise & Programming 7장 Exercise 1. a. 값이 0이 아니면 참으로 간주한다 c.

거짓이여도 1번은 수행한다 d. 비어있어도 된다 2. 1, 3, 4번 3.

출력되지 않는다 4. a. 0 3 6 9(세로 출력) b. 0 3 6 9(세로 출력) c. 0 2 4 6 8(세로 출력) d. 10 9 8 7 6 5 4 3 2 1 0(세로출력) e. ********* f. hellohellohellohellohello 5. a int main() { int i = 10; while (i >= 0) { printf("%d\n", i); i--; } } b int main() { int i; for (i = 10; i >= 0; i -= 3) { printf("%d\n", i); }.....