Writing an upgrade to my program I'd like to start using the nullptr, a cleaner replacement to NULL. My question is can I use it everywhere, for example in checking the strstr return value?
if (strstr(szLong,"tag") == nullptr)
Presumably will work as well as
if (strstr(szLong,"tag") == NULL)
?