Is C NULL equal to C++11 nullptr
In C++11 and beyond, a pointer that is ==NULL will also ==nullptr and vice versa. Uses of NULL other than comparing with a pointer (like using it to represent the nul byte at the end of a string) won’t work with nullptr. In some cases, NULL is #define NULL 0, as the integer constant 0 … Read more