Double Pointer \ Pointer to pointer Program 
Double Pointer Output 
Copy Text from below :
#include<stdio.h>
#include<conio.h>
int main()
{
    int a=100;
    int *p;
    int **p1;
    p=&a; //given value to p
    p1=&p;//given value to p1
     printf("Vaue of a is %d ",a);
     printf("\nValue of a is %d ",*p);//
     printf("\nValue of a is %d ",**p1);
}
For more Program  : 
Download pdf file : 
If you are interested  in cool and amazing  facts . You must watch this video 🎬 👇 
Subscribe the channel :
 
 
 
 
  
 
 
 
 
0 Comments
Post a Comment