I wrote the following code and want to know that in the int *fun() function after the return p; statement I used p=nullptr;. I am a bi
int *fun()
return p;
p=nullptr;