C Programming Language || Hands On Coding
12.9K subscribers
139 photos
2 videos
13 links
Hands-on C programming language challenges for beginners. Learn building logic by solving programs.

Owner: @Pradeep_saii
Download Telegram
//Program to print the adress of variable and using that address get the value of that variable.
#include<stdio.h>
int main(){
int a=10;
int *address=&a;
printf("Address of variable a: %p\n",&a);
printf("Value of a:%d",*address);
return 0;
}
#pointers
👍1