// Prints an integer via its address #include int main(void) { int n = 50; printf("%i\n", *&n); }