Just to clarify, you can check with:
int value1 = NULL;
int value2 = nullptr;
The first compiles, but not the second, meaning NULL is still defined to 0.
Just to clarify, you can check with:
int value1 = NULL;
int value2 = nullptr;
The first compiles, but not the second, meaning NULL is still defined to 0.