A pointer which is not pointing to any address or memory location is known as NULL pointer. means NULL pointer do not point any address or memory location.
NULL pointer is a pointer which do not point to any memory location or any address.It also does not
contain any value.
#include
int main(void)
{
Int *p=NULL:
return 0;
}
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
A pointer which is not pointing to any address or memory location is known as NULL pointer. means NULL pointer do not point any address or memory location.
NULL pointer is a pointer which do not point to any memory location or any address.It also does not contain any value.