Tagged Questions

36
votes
6answers
9k views

What exactly is nullptr?

We now have C++11 with many new features. An interesting and confusing one (at least for me) is the new nullptr. Well, no need anymore for the nasty macro NULL. int* x = nullptr; myclass* obj = ...
1
vote
5answers
305 views

Is nullptr not a special keyword and an object of std::nullptr_t? [closed]

Possible Duplicate: What exactly is nullptr? I first thought it's a keyword. My present gcc doesn't highlight nullptr in a different shade. To verify that, I wrote following: void *&p ...