// Prints an integer's address #include int main(void) { int n = 50; printf("%p\n", &n); }