NULL pointer

If a pointer variable stores NULL value then this type of pointer is called NULL pointer. Initialization of NULL value to a pointer represents that any memory address or variable is not pointed by the pointer. 
यदि किसी पॉइंटर वेरिएबल द्वारा नल वैल्यू राखी जाती है तब इस प्रकार के पॉइंटर को नल पॉइंटर कहा जाता है। पॉइंटर को नल वैल्यू प्रदान करने पर वह किसी मेमोरी एड्रेस को पॉइंट नहीं करता है। 

Syntax :-
datatype *pointer_name = NULL;

Example :-
int *p=NULL;
char *q='\0';

No comments:

Post a Comment