-->

Facebook

Jasper Roberts - Blog

Tuesday, December 13, 2016

Write a C program to print address of a variable

#include<stdio.h>
#include<conio.h>

void main( )
{

int a;
clrscr();
printf(“Address of a = %u“,&a);
getch();

}

OUTPUT:
Address of a =64453