Null Pointer Program - Coding is Funny

Null Pointer Program

Null Pointer Program

Null pointer is a special reserved value of a pointer. A pointer of any type has this reserved value. Formally, each specific pointer type(int *, char *, etc) has its own dedicated null-pointer value. Conceptually, when a pointer has that Null value it is not pointing anywhere.
Void pointer is a specific pointer type. void * which is a pointer that points to some data location in storage, which doesn't have any specific type.
Null pointer is a value whereas, Void pointer is a type.
Below is a program on NULL pointer.
#include<stdio.h>

int main()
{
    printf("\n\n\t\tStudytonight - Best place to learn\n\n\n");
    int *ptr = NULL;    // ptr is a NULL pointer

    printf("\n\n The value of ptr is: %x ", ptr);
    printf("\n\n\t\t\tCoding is Fun !\n\n\n");
    return 0;
}

Output:


  • Share: