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.
uint
is not a standard type. On some system uint
is typedef
ed as
typedef unsigned int uint ;