Is there any difference between uint and unsigned int? I\'m looking in the site, but all question refers to C# or C++. I\'d like to have an answer conc
uint
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.