728x90
728x170
쉽게 풀어 쓴 C언어 Express 4장 Exercise 문제
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;
}
728x90
그리드형
'IT > 프로그래밍' 카테고리의 다른 글
쉽게 풀어 쓴 C언어 Express 6장 Exercise 문제 (0) | 2020.12.05 |
---|---|
쉽게 풀어 쓴 C언어 Express 5장 Exercise 문제 (0) | 2020.12.05 |
쉽게 풀어 쓴 C언어 Express 3장 Exercise 문제 (0) | 2020.12.05 |
쉽게 풀어 쓴 C언어 Express 2장 Exercise 문제 (0) | 2020.12.05 |
쉽게 풀어 쓴 C언어 Express 1장 Exercise 문제 (0) | 2020.12.05 |
댓글