Friday, 19 October 2012

Program Of Pointer To Pointer Using C

#include<stdio.h>
#include<conio.h>
 
main()
 
{
 
clrscr();
 
a=10;
 
printf("\n Value of a= %d",a);
 
printf("\n Address of a= %u",b);
 
printf("\n Address of b= %u",c);
 
printf("\n Value of c= %u",c);
 
printf("\n  BAck to Two Step means c= 
%u",**c);
 
 getch();
 
}

No comments:

Post a Comment