//====================== dereference.c ===================== int* test() { int a; int* p = &(a); return p; } int main() { int* ptr = test(); *ptr; }