0
What's an unsigned int?
1 Réponse
+ 6
https://www.geeksforgeeks.org/difference-between-unsigned-int-and-signed-int-in-c/
unsigned ints can only represent positive values. This extends the maximum value to about double that of signed ints. useful if you don't have no use of negative values in your variable.