结构体指针sizeof 4

struct abc
{
	int a;
	char b[12];
	char c[3];
};
int main()
{
	cout << sizeof(struct abc *) << endl;
	system("PAUSE");
	return 0;


}

  

posted on 2021-12-10 19:53  lydstory  阅读(31)  评论(0)    收藏  举报

导航