Can I use the nullptr
keyword as an argument for a variable function? If so, does it undergo any kind of standard conversion, and what is the type of the resulting value?
Concretely, is the following correct?
std::printf("%p", nullptr);
Or does it have to be:
std::printf("%p", static_cast<void *>(nullptr));