728x90 uint32_t 자료형이란? C와 CPP에 등록되어 있는 자료형은 아니고, 에 typedef 되어 자료형처럼 사용! 앞에 u가 붙어있으면 unsigned라는 뜻 uint32_t = unsigned int 32비트 자료형 밑에 코드는 stdint.h에 정의된 자료형 typedef signed char int8_t; typedef short int16_t; typedef int int32_t; typedef long long int64_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef unsigned long long uint64_t; typedef signed char int_least8_t; t.. 2022. 1. 14. 이전 1 다음 728x90