Thursday, February 27, 2014

Program to find Address of character

#include<stdio.h>
#include<conio.h>
int main()
{
int a;
printf("Enter a Number");
scanf("%d",&a);
printf("Address of the %d is %d",a,&a);
getch();
}

No comments:

Post a Comment