반응형
Data Type(s)Format Specifier(s)
uint8_t, uint16_t | %u (Unsigned) |
uint32_t | %lu (Long Unsigned) |
int8_t, int16_t | %d (Decimal - Signed) |
int32_t | %ld (Long Decimal - Signed) |
uint8_t, uint16_t, int8_t, int16_t | %x (Hexadecimal - Lowercase), %X (Hexadecimal - Uppercase) |
uint32_t, int32_t | %lx (Long Hexadecimal - Lowercase), %lX (Long Hexadecimal - Uppercase) |
float, double | %f (Float) |
'Programming' 카테고리의 다른 글
[C#,WPF] INotifyPropertyChanged & binding (0) | 2024.01.25 |
---|---|
패킷 TLV필드 형식 (0) | 2023.10.31 |
.gitignore 파일 쉽게 생성하기 (0) | 2023.10.24 |
[C#] wpf 프로젝트 빌드 시 exe파일에 dll 포함시켜서 빌드하기 (0) | 2023.10.17 |
[C#] 구조체 - 바이트배열 간 데이터 변환 (0) | 2023.07.14 |