1. 程式人生 > >使用sizeof運算子確定基本資料型別大小

使用sizeof運算子確定基本資料型別大小

#include <iostream>
using namespace std;
int main()
{char c;
 short s;
 long l;
 float f;
 double d;
 long duoble ld;
 int array[20];
 int *ptr=array;
 cout<<sizeof c<<"  "<<sizeof s<<"  "<<sizeof l<<"  "<<sizeof f<<"  "<<sizeof d<<"  "<<sizeof ld<<"  "<<sizeof array<<"  "<<sizeof ptr<<endl;
 return 0;
}

結果:
1  2  4  4  4  8  8  80  4