Pointer in C language
Pointer in C Output
Copy Text from below
#include<stdio.h>
#include<conio.h>
int main()
{
int a=500;
int *p; //Pointer Variable
p=&a; // A's address given to P
printf("Value of a %d ",a);
printf("\n Value of a %d ",*p);
}
Download pdf file of Program
For more Program
0 Comments
Post a Comment