Will C++11 implementations define NULLas nullptr?
Would this be prescribed by the new C++ standard?
FDIS of the upcoming standard C++11, integral expression is still a null pointer constant. NULL macro is still implementation defined but must be a null pointer constant. So in practice it means it is good as 0 or can be nullptr.
Your code that used either 0 or NULL will work just as before.
Read the details here.