该程序查找数据类型的大小,如char
,int
,float
,double
。
示例:用于在 C 中查找数据类型大小的程序
在这个程序中,我们使用sizeof()
运算符来查找数据类型的大小。当sizeof
与原始数据类型(如int
,float
,double
和char
)一起使用时,它将返回分配给它们的内存量。
#include<stdio.h>
int main()
{
printf("Size of char: %ld byte\n",sizeof(char));
printf("Size of int: %ld bytes\n",sizeof(int));
printf("Size of float: %ld bytes\n",sizeof(float));
printf("Size of double: %ld bytes", sizeof(double));
return 0;
}
输出:
Size of char: 1 byte
Size of int: 4 bytes
Size of float: 4 bytes
Size of double: 8 bytes
看看这些相关的 C 程序: