int
main()
{
int x;
int *p;
int **pp;
x = 0;
p = &x;
pp = &p;
if(*p)
return 1;
if(**pp)
else
**pp = 1;
if(x)
return 0;
}