일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Nodejs
- MYSQL
- 앱리소스
- 2FA
- openssl
- 앨범북
- Xcode
- 애플
- Android
- SSH
- 안드로이드
- fido
- SWIFT
- kmip
- OTP
- git
- SwiftUI
- MSYS2
- SSL
- appres
- otpkey
- 앱스토어
- albumbook
- apple
- OSX
- css
- 인증
- FIDO2
- MFA
- WebAuthn
Archives
- Today
- Total
인디노트
프로세서 별 자료형 길이 본문
Share what I learned about this question recently.
The reason why we need such explicitly sized type, such as u32, is that the normal C data types are not the same size on all architectures.
The following image shows that long integers and pointers feature a different size on various platforms.
In this way, u32 can guarantee that you get 4 bytes long integer.
반응형
'소스 팁' 카테고리의 다른 글
JNI 의 Native 함수를 만들때 유의사항 (0) | 2022.09.02 |
---|---|
Unique System Identifier in C CPP on Windows, Linux and Mac (0) | 2022.06.28 |
Windows Hello Unlock using Companion Devices (0) | 2022.04.15 |
RHEL/CentOS 에 python 2.7, 3.* 설치하기 (0) | 2019.08.17 |
HTTP 쿠키와 톰캣 버전별 이슈 (0) | 2018.12.17 |
Comments