C Programming Code Examples C > Pointers Code Examples Read and output: Address pointed by the argument Read and output: Address pointed by the argument #include <stdio.h> int main(void) { char *p; printf("Enter an address: "); scanf("%p", &p); printf("Value at location %p is %c\n", p, *p); return 0; }