unsigned int は uint32_t と同じですか? 2 の補数ではない 32 ビットの符号なし整数はどれですか?
uint32_t y = 0xFFFFFFFF; // gives -1 i dont get why is it negative?
uint8_t x = 0b11111111; // gives 255 i understand this
unsigned int は uint32_t と同じですか? 2 の補数ではない 32 ビットの符号なし整数はどれですか?
uint32_t y = 0xFFFFFFFF; // gives -1 i dont get why is it negative?
uint8_t x = 0b11111111; // gives 255 i understand this