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