uint8_t and unsigned char difference

Asked 1 years ago, Updated 1 years ago, 127 views

As far as I know, uint8_t is unsigned char and typeef I understand that the implementation of the two is the same. I think there's a reason why they made it separately I wonder when uint8_t is used

c typedef

2022-09-22 22:20

1 Answers

uint8_t is used to indicate the developer's intention to "contain small numbers, not letters." In addition, uint16_t or int32_t are used in a similar meaning.


2022-09-22 22:20

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.