#include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { int a = 123; printf("%p\n", (void *) &a); return 0; }