Hi i am trying to see what happens when i create a nullptr in C++ and use it in a if statement. For example, my code is as following: int *p=nullptr; if(p){cout<<&qu
int *p=nullptr; if(p){cout<<&qu