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
- JavaScript
- Python
- sorting
- dfs
- 따라하면서 배우는 C언어
- Algospot
- 종만북
- Math
- udemy
- 정수론
- 따라하며 배우는 C언어
- String
- 따배씨
- BASIC
- server
- web
- php
- graph
- C언어
- greedy
- 인프런
- BFS
- Cleancode
- DP
- Algorithm
- BOJ
- programmers
- 생활코딩
- 백준
- C
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 3.8 8진수와 16진수 본문
따배씨 - 따라하며 배우는 C언어
3강 데이터와 C 언어
3.8 8진수와 16진수
#include <stdio.h>
#include <limits.h>
int main()
{
unsigned int decimal = 4294967295;\
unsigned int binary = 0b11111111111111111111111111111111;
unsigned int oct = 037777777777;
unsigned int hex = 0xffffffff;
printf("%u\n", decimal); // 4294967295
printf("%u\n", binary); // 4294967295
printf("%u\n", oct); // 4294967295
printf("%u\n", hex); // 4294967295
printf("%o\n", decimal);
// 37777777777
printf("%x\n", decimal);
// ffffffff
printf("%#o\n", decimal);
// 037777777777
printf("%#x\n", decimal);
// 0xffffffff
printf("%#X\n", decimal);
// 0XFFFFFFFF
return 0;
}
- %#
- prefix
- 출력 시 입력할 때와 같이 명확히 진수를 표현해주는 방법
- 대문를 사용하면 대문자로 출력
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 3.10 문자형 (0) | 2021.05.11 |
---|---|
[따배씨] 3.9 이식성이 높은 고정 너비 정수 (0) | 2021.05.11 |
[따배씨] 3.6 정수의 오버플로우 (0) | 2021.05.10 |
[따배씨] 3.5 정수와 실수 (0) | 2021.05.09 |
[따배씨] 3.4 간단한 입출력 프로그램 만들기 (0) | 2021.05.09 |
Comments