pointer is a derived datatype which contains memory addresses as their values.
program:-
#include<stdio.h>
#include<conio.h>
void main()
{
int m=5,*p;
clrscr();
p=&m;
printf("address of variable m is %p",(void *)p);
}
Copyright © 2026 eLLeNow.com All Rights Reserved.