Описание тега nullptr

The C++11 keyword for a null pointer, it can be converted to any pointer type.

nullptr is a null pointer constant of type std::nullptr_t which can be implicitly converted to any pointer type. An integer constant 0 can also be converted to any pointer type but can also be deduced as an integer in other contexts, leading to ambiguities.

See What exactly is nullptr?