几种类型的sizeof
yichen
posted @ 2014年4月01日 02:07
in Essay
, 427 阅读
#include <iostream>
using namespace std;
int main()
{
char *c ="hello";
int *a[2][3];
int b[2][3];
cout << sizeof(a) << endl
<< sizeof(b) << endl
<< sizeof(c) << endl;
return 0;
}
运行结果:(注意系统是32位)
24
24
4