请编写一个简单程序,输出int,float,double和char的大小。
格式
输入格式:无
输出格式:输出分4行,分别输出int,float,double和char的大小
样例
输入:无
输出:Size of int:4 bytes
Size of float: 4 bytes
Size of double: 8 bytes
Size of char: 1 byte
#include<bits/stdc++.h>
using namespace std;
int main( )
{
int a;
float b;
double c;
char d;
printf("Size of int: %d bytes\n",sizeof(a));
printf("Size of float: %d bytes\n",sizeof(b));
printf("Size of double: %d bytes\n",sizeof(c));
printf("Size of char: %d byte\n",sizeof(d));
return 0;
}