shithub: scc

ref: ad3e410e18f471cc42104b7f39f195fb5d819b7a
dir: /tests/0018-structptr.c/

View raw version


int
main()
{

	struct S { int x; int y; } s;
	struct S *p;

	p = &s;	
	s.x = 1;
	p->y = 2;
	return p->y + p->x - 3; 
}