Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 옵저버블
- egov spring ajax 사용 예시
- Oracle LISTAGG 사용 예시
- angular animation
- 앵귤러 모달
- TAILWIND
- modal
- summary
- flex-1
- 모달
- ApexChart
- 아이오닉 스크롤 이벤트
- 스크롤 이벤트 감지
- Angular Router
- 검색
- mysql if
- route
- Router
- angular modal
- 호버
- 스크롤 이벤트
- angular button
- 앵귤러 애니메이션
- 셀렉트박스 커스텀
- Ionic modal
- ajax 사용 예시
- scroll
- prisma
- formgroup
- angular route
Archives
- Today
- Total
깜놀하는 해므찌로
C언어 기초 숫자형 변수 사용 예시 본문
반응형
SMALL
#include <stdio.h>
int main(void){
int x;
float y;
double z;
x = 5;
y = 123451515543545.1233453453241134141155;
z = 12345.1233453453241;
printf("현재 x의 메모리 크기는 %d 입니다\n", sizeof(x));
printf("y : %.3f\n x : %d", y, x);
printf("\n z : %.2f", z);
return x;
}
1. #include <stdio.h> : 외부 라이브러리를 불러오는 과정
"standard input output header" 라는 뜻
2. %d : integer 형태를 사용하겠다는 뜻
decimal : 10진수
3. %.3f : 소수점 3번째 자리까지 표시
유의 : float 크기는 4byte 이기 때문에 4byte 를 초과하면 나머진 잘리게 된다.
따라서 데이터에 따라 그에 맞는 자료형을 선택해야 한다.
4. %.2f : 소수점 2번째 자리까지 표시
double : 8byte
5. \n : 줄바꿈
반응형
LIST
'IT' 카테고리의 다른 글
C언어 %c 주의사항 (0) | 2023.03.20 |
---|---|
C언어 int 최대값 INT_MAX 출력하기 예시 (0) | 2023.03.19 |
MySQL IF 활용 예시 / SQL 조회 시 데이터가 안 나오는 경우 count 활용 예시 (0) | 2023.03.15 |
Egov Spring Java 스케줄러 활용 예시 / @Scheduled (0) | 2023.03.09 |
JS JavaScript 변수 안에 함수 선언하는 방법 예시 (0) | 2023.03.05 |