macro

NULL

<cwchar>
Null pointer
This macro expands to a null pointer constant.

A null pointer is generally used to signify that a pointer does not point to any value.

This macro expands to the value used by the specific platform and library implementation to represent a null pointer.

In C++, this is either an integral value of zero or nullptr.