Difference between uint and unsigned int?
Some systems may define uint as a typedef.
typedef unsigned int uint;
For these systems they are same. But uint is not a standard type, so every system may not support it and thus it is not portable.
uint
isn't a standard type - unsigned int
is.