P163

#include
main()
{
	struct s1{int x;int y;};
	struct s1 a={1,3};
	struct s1 *b=&a;
	b->x=10;
	printf("%d%d\n",a.x,a.y);
}

你可能感兴趣的:(二级c)