//不用sizeof(), 判断系统是32位还是16位...
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
unsigned int a = ~0;
if( a>65536 )
{
cout<<"32 bit"<<endl;
}
else
{
cout<<"16 bit"<<endl;
}
system("PAUSE");
return 0;
}
不用sizeof(), 判断系统是32位还是16位
最新推荐文章于 2024-07-31 09:05:09 发布