C Program to print Address of Variable by using Pointers

C Program to print Address of Variable by using Pointers
Its very Basic Program for assignments of Collages.





#include
#include
void main()
{
int a;
float b;
clrscr();
printf("\n Address of a=%u",&a);
printf("\n Address of b=%u",&b);
getch();
}



No comments:

Post a Comment