C program to demonstrate example of double pointer (pointer to pointer)

In this C program, we are going to learn about double pointers (pointer to pointer) in C programming language, here we will learn how to declare, assign and use a double pointer (pointer to pointer) in C?
By IncludeHelp Last updated : March 10, 2024

In this program, we have to declare, assign and access a double pointer (pointer to pointer) in C.

C Double Pointer (Pointer to Pointer)

As we know that, pointers are the special type of variables that are used to store the address of another variable.

But, when we need to store the address of a pointer variable, we cannot assign it in a pointer variable. To store address of a pointer variable, we use a double pointer which is also known as pointer to pointer.

In this C program, we will understand how to declare, assign and access a double pointer (pointer to pointer)?

C program for double pointer (pointer to pointer)

/*C program to demonstrate example of double pointer (pointer to pointer).*/
#include <stdio.h>
 
int main()
{
    int a;          //integer variable
    int *p1;            //pointer to an integer
    int **p2;           //pointer to an integer pointer
     
    p1=&a;          //assign address of a
    p2=&p1;         //assign address of p1
     
    a=100;          //assign 100 to a
     
    //access the value of a using p1 and p2
    printf("\nValue of a (using p1): %d",*p1);
    printf("\nValue of a (using p2): %d",**p2);
     
    //change the value of a using p1
    *p1=200;
    printf("\nValue of a: %d",*p1);
    //change the value of a using p2
    **p2=200;
    printf("\nValue of a: %d",**p2);
     
    return 0;
}

Output

Value of a (using p1): 100
Value of a (using p2): 100
Value of a: 200
Value of a: 200

C Pointer Programs »

Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.