int a = 76;
int *ptra = &a;
printf("The address of a is %p", ptra);
//%p → no. in hexadecimal, so as address are in hexadecimal value.
printf("The value of a is %d",*ptra);
int ptr2;
printf("%p",ptr2); //62374678 garbage value
int *ptr2 = NULL:
printf("%p",ptr2); //0000000
Want to use these three but we can't use array instead we can make link list and using node we can point address of each other then we can do traversing and searching.