POINTER



What is pointer?




Input Output
#include<stdio.h>
main()
{
int a,b;
int *d,*e,**f;
clrscr();
a=10;
b=20;
d=&a;
e=&b;
f=&e;
printf("%d\n%d\n%d\n%d\n",a,b,*d,e,*f);
getch();
}