Difference between NULL and nullptr in c plus plus
difference between NULL and nullptr in c++ NULL and nullptr are both used to represent null or empty values in C++, but they have some key differences. C++ void f(int); void f(void*); If we call the function f() with the argument NULL, the compiler will not be able to determine which function to call. This … Read more