C 语言实例 – 计算 int, float, double 和 char 字节大小
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\n",sizeof(integerType));
printf("Size of float: %ld bytes\n",sizeof(floatType));
printf("Size of double: %ld bytes\n",sizeof(doubleType));
printf("Size of char: %ld byte\n",sizeof(charType));
return 0;
}
运行结果:
Size of int: 4 bytes Size of float: 4 bytes Size of double: 8 bytes Size of char: 1 byte
计算 long long, long double 字节大小
实例
#include <stdio.h>
int main()
{
int a;
long b;
long long c;
double e;
long double f;
printf("Size of int = %ld bytes \n", sizeof(a));
printf("Size of long = %ld bytes\n", sizeof(b));
printf("Size of long long = %ld bytes\n", sizeof(c));
printf("Size of double = %ld bytes\n", sizeof(e));
printf("Size of long double = %ld bytes\n", sizeof(f));
return 0;
}
运行结果:
Size of int = 4 bytes Size of long = 8 bytes Size of long long = 8 bytes Size of double = 8 bytes Size of long double = 16 bytes
相关文章
- C++学习之如何进行内存资源管理
- 一文详解C++智能指针的原理、分类及使用
- C++学习之智能指针中的unique_ptr与shared_ptr
- C++ 折叠参数包详解(悄然增强编程效率)
- C语言形参和实参的区别详解
- C语言常用占位符的使用小结
- C语言结构体指针的具体使用
- C语言中pthread_exit()函数实现终止线程
- 一文详解C语言操作符
- Visual Studio 远程调试步骤
- ASP.NET Core快速入门之实战篇
- .net数据库操作框架SqlSugar的简单入门
- 如何在 .NET 中使用 Flurl 高效处理Http请求
- .NET 开源配置组件 AgileConfig的使用简介
- Asp.net基础知识扫盲篇
- .Net集成敏感词组件的步骤
- IIS部署ASP.NET5的实现步骤
- ASP.NET Core中间件初始化的实现
- ASP.NET Core 文件响应压缩的常见使用误区
- .net core 使用阿里云分布式日志的配置方法