struct st
{
int g;
int *f;
};

main ()
{
struct st x, *p;
int z, u, w, i, *r, *y;

z = 0;
p = &x;
p->f = &z;
p->g = 0;

r = &u;
*r = 1;

}