How to get the address of a pointer in c

https://w‮tual.ww‬turi.com
How to get the address of a pointer in c
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char const *argv[]) {

    int a = 123;

    printf("%p\n", (void *) &a); 
    return 0;
}
Created Time:2017-08-28 20:46:49  Author:lautturi