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 an answer about C.
Note that I'm using GCC under Linux
|
|
|
|
|||||||||||||
|
|
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. |
|||||||||
|
|
The |
|||
|
|