C language

NULL pointer

It is the simplest pointer. The NULL pointer is a pointer which points to no where.. We can also use integer 0 in place of constant NULL. Int* x=NULL; The above statement creates a NULL pointer x. DEREFERENCING NULL As we know NULL pointer is actually a pointer which points to nowhere and hence we […]