Search code examples
c++cuint

C++ - Which are variable by " Uint "?


Which are variable by " Uint "? is that there are " Uint8 ", " Uint16 ", etc ...

But what are they ?

Now I have some time using C ++ but I have never needed to use these variables and cause me curious.

Thanks in advance.


Solution

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

    typedef unsigned int uint ;