What is NULL pointer ?

NULL is typically defined constant 0 or ((void *) 0 ). Preprocessor macro of NULL is defined in <stdio.h> NULL should be used for pointecr constant ,means which points to nothing.

int *p=NULL;

%d bloggers like this: