A C program to value and content of variable

// A C program to value and content of variable  

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int x=2;
int *y;
y=&x;
printf("adress of x=%u",y);
printf("value of x=%d",x);
printf("value of x=%d",*y);
getch();
}

Output:


A C program to value and content of variable, write a program to value the content of variable, my knowledge to you dude, wap to value and content of variable, C program









Post a Comment

0 Comments