#include <stdio.h>
int main(void)
{
int *p;
int anikas_son=2;
p=&anikas_son;
printf("%d\n",*p);
system("pause");
return 0;
}
This is the output:
2
Programming is the most easiest thing in the world and that's why make fun with it and be a Expert of it.
#include <stdio.h>
int main(void)
{
int *p;
int anikas_son=2;
p=&anikas_son;
printf("%d\n",*p);
system("pause");
return 0;
}
2
Labels: Pointer
All rights reserved||Using Deluxe Template By Klodian
0 comments:
Post a Comment