/**
* 特征:说明。浅谈数据类型的大小
* 时刻:2014年8一个月10日本11:02:02
* 笔者:cutter_point
*/
#include<iostream>
using namespace std;
int main()
{
char c;
unsigned char cu;
short int is;
short iis;
unsigned short int isu;
unsigned short iisu;
int i;
unsigned int iu;
long int il;
long iil;
unsigned long int ilu;
unsigned long iilu;
float f;
double d;
long double ld;
cout
<<"\n char= "<<sizeof(c)
<<"\n unsigned= "<<sizeof(cu)
<<"\n short int= "<<sizeof(is)
<<"\n short= "<<sizeof(iis)
<<"\n unsigned short int= "<<sizeof(isu)
<<"\n unsigned short= "<<sizeof(iisu)
<<"\n int= "<<sizeof(i)
<<"\n unsigned int= "<<sizeof(iu)
<<"\n long int= "<<sizeof(il)
<<"\n long= "<<sizeof(iil)
<<"\n unsigned long int= "<<sizeof(ilu)
<<"\n unsigned long= "<<sizeof(iilu)
<<"\n float= "<<sizeof(f)
<<"\n double= "<<sizeof(d)
<<"\n long double= "<<sizeof(ld)
<<endl;
return 0;
}
版权声明:本文博主原创文章,博客,未经同意不得转载。