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
The unsigned int is a built in (standard) type so if you want your project to be cross-platform, always use unsigned int as it is guarantied to be supported by all compilers (hence being the standard).