DEV Community

Alexander Crescent
Alexander Crescent

Posted on

Answer: What is uintptr_t data type

uintptr_t is an unsigned integer type that is capable of storing a data pointer. Which typically means that it's the same size as a pointer.

It is optionally defined in C++11 and later standards.

A common reason to want an integer type that can hold an architecture's pointer type is…

Latest comments (0)