본문 바로가기
솔루션모음/쉽게 풀어 쓴 C언어 Express 이론

[쉽게 풀어 쓴 C언어 Express] 4장 Exercise 해답 솔루션 답지

by 이얏호이야호 2020. 4. 3.

1. (3)

기호 상수 정의

number 변수 선언하고

long형의 상수 100으로

초기화

radius 변수를 선언하고

실수 상수 1.0e-10로 초

기화 char형 변수 ch를 선언

하고 'z'로 초기화

2. char, unsigned char, short, int, long, unsigned, float, double

 

3. (3)

 

4. (2), (5)

 

5. (3)

6. (3),(4)

 

7. (4)

 

8. (a) int (b) double (c) float (d) int (e) char

 

9. (a) 잘못없음

(b) #는 사용할 수 없는 기호

(c) 숫자로 시작할 수 없음

(d) %를 사용할 수 없음

 

 

 

10. (a) 0.3141592e1

(b) 0.716532e3

 

11. (1), (5)

 

12. (2), (6)

 

13. (a) %f 또는 %lf (b) %d (c) %c (d) %f

 

14. 1.234는 double 형의 상수이기 때문에 float 형의 변수에 대입하면 컴파일 경고가 발생

한다.

 

15.

#include <stdio.h>

int main(void)

{

int x, y = 0; // int x=0, y=0;

char grade = "A"; // char grade = 'A';

double rate = e10; // double rate = 1.0e10;

short double profit = 75.0; // double profit = 75.0;

int salary = 2,000,000; // int salary=2000000;

}

 

더 많은  쉽게 풀어 쓴 C언어EXPRESS 이론 솔루션

 https://chuinggun.tistory.com/category/%EC%86%94%EB%A3%A8%EC%85%98%EB%AA%A8%EC%9D%8C/%EC%89%BD%EA%B2%8C%20%ED%92%80%EC%96%B4%20%EC%93%B4%20C%EC%96%B8%EC%96%B4%20Express%20%EC%9D%B4%EB%A1%A0

더 많은 쉽게 풀어 쓴 C언어EXPRESS 프로그래밍 솔루션 : 

https://chuinggun.tistory.com/category/%EC%86%94%EB%A3%A8%EC%85%98%EB%AA%A8%EC%9D%8C/%EC%89%BD%EA%B2%8C%20%ED%92%80%EC%96%B4%20%EC%93%B4%20C%EC%96%B8%EC%96%B4%20Express%20%EC%8B%A4%EC%8A%B5%EB%AC%B8%EC%A0%9C

댓글