C 语言实例 - 计算 int, float, double 和 char 字节大小。

Posted zhangdemingq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C 语言实例 - 计算 int, float, double 和 char 字节大小。相关的知识,希望对你有一定的参考价值。

使用 sizeof 操作符计算int, float, double 和 char四种变量字节大小。

sizeof 是 C 语言的一种单目操作符,如C语言的其他操作符++、--等,它并不是函数。

sizeof 操作符以字节形式给出了其操作数的存储大小。

#include <stdio.h>
int main()
{
    int integerType;
    float floatType;
    double doubleType;
    char charType;
    // sizeof 操作符用于计算变量的字节大小
    printf("Size of int: %ld bytes ",sizeof(integerType));
    printf("Size of float: %ld bytes ",sizeof(floatType));
    printf("Size of double: %ld bytes ",sizeof(doubleType));
    printf("Size of char: %ld byte ",sizeof(charType));
    return 0;
}

技术图片

 

 

计算 long long, long double 字节大小

#include <stdio.h>
int main()
{
     int a;
     long b;
     long c;
     double e;
     long double f;
    printf("Size of int = %ld bytes ", sizeof(a));
    printf("Size of long = %ld bytes ", sizeof(b));
    printf("Size of long long = %ld bytes ", sizeof(c));
    printf("Size of double = %ld bytes ", sizeof(e));
    printf("Size of long double = %ld bytes ", sizeof(f));
    return 0;
}

技术图片

以上是关于C 语言实例 - 计算 int, float, double 和 char 字节大小。的主要内容,如果未能解决你的问题,请参考以下文章

c语言中计算int,float,double,char四种数据类型所能表示的数据范围

C语言初级问题求解=。= 为什么我的这段程序用int %d可以算 但是用float %f却运行不了呢?

c语言中计算int,float,double,char四种数据类型所能表示的数据范围

C语言中 int float double char long short

C语言中float型数据怎么 取整数部分算法 或取小数部分

C语言里面float数据用printf(“%d”)输出的问题