int main() { int z; int *y; int **x; x = &y; y = &z; int *w = *x; return 0; }