c++cuint

What are "uint" variables?


What are variables declared by "uint"? It seems that there are "uint8", "uint16", etc.

But what are they?

I have been using C++ for some time but I have never needed to use these variables and it made me curious.


Solution

  • uint is not a standard type. On some system uint is typedefed as

    typedef unsigned int uint ;