blob: 87ac00aef64cdc562607d0b2a46f08b63f68a7f8 [file] [log] [blame]
main (int *p)
{
int a;
a = 0;
p[1] = a;
a = 0;
p[2] = a;
a = 123456;
p[3] = a;
}