반응형

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)
 

+ Recent posts