Its all down to how much you want to control whats happening,I would like to know personally what do you use int or uint8_t in c program. I have seen in my research that unit_8t is used by most of the people but no idea why do they use it instead of int
Warm regards
Pushkar
char apple;
// vs
int8_t banana;
You need to be more specific. The size of int is machine dependent and is a signed quantity. uint*_t is unsigned.I would like to know personally what do you use int or uint8_t in c program.