#include<stdio.h>
#include<conio.h>
void main( )
{
int a;
clrscr();
printf(“Address of a = %u“,&a);
getch();
}
OUTPUT:
Address of a =64453
#include<conio.h>
void main( )
{
int a;
clrscr();
printf(“Address of a = %u“,&a);
getch();
}
OUTPUT:
Address of a =64453