What is the type of the "something" variable in the C ++ 11 standard initialized with
auto something = nullptr;
?
A type std::nullptr_tthat is a single-valued type introduced in C ++ 11 to represent a null pointer and which is implicitly converted to any other type of pointer.
std::nullptr_t