C 語言實例 – 計算 int, float, double 和 char 字節(jié)大小
C 語言實例 - 計算 int, float, double 和 char 字節(jié)大小
使用 sizeof 操作符計算int, float, double 和 char四種變量字節(jié)大小。
sizeof 是 C 語言的一種單目操作符,如C語言的其他操作符++、--等,它并不是函數(shù)。
sizeof 操作符以字節(jié)形式給出了其操作數(shù)的存儲大小。
實例
#include <stdio.h>
int main()
{
int integerType;
float floatType;
double doubleType;
char charType;
// sizeof 操作符用于計算變量的字節(jié)大小
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;
}
運行結(jié)果:
Size of int: 4 bytes Size of float: 4 bytes Size of double: 8 bytes Size of char: 1 byte
計算 long long, long double 字節(jié)大小
實例
#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;
}
運行結(jié)果:
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
相關(guān)文章
- C++學(xué)習(xí)之如何進(jìn)行內(nèi)存資源管理
- 一文詳解C++智能指針的原理、分類及使用
- C++學(xué)習(xí)之智能指針中的unique_ptr與shared_ptr
- C++?折疊參數(shù)包詳解(悄然增強編程效率)
- C語言形參和實參的區(qū)別詳解
- C語言常用占位符的使用小結(jié)
- C語言結(jié)構(gòu)體指針的具體使用
- C語言中pthread_exit()函數(shù)實現(xiàn)終止線程
- 一文詳解C語言操作符
- Visual Studio 遠(yuǎn)程調(diào)試步驟
- ASP.NET Core快速入門之實戰(zhàn)篇
- .net數(shù)據(jù)庫操作框架SqlSugar的簡單入門
- 如何在 .NET 中使用 Flurl 高效處理Http請求
- .NET 開源配置組件 AgileConfig的使用簡介
- Asp.net基礎(chǔ)知識掃盲篇
- .Net集成敏感詞組件的步驟
- IIS部署ASP.NET5的實現(xiàn)步驟
- ASP.NET Core中間件初始化的實現(xiàn)
- ASP.NET Core 文件響應(yīng)壓縮的常見使用誤區(qū)
- .net core 使用阿里云分布式日志的配置方法