⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sizeof.c

📁 C语言常用的程序900例
💻 C
字号:
#include <stdio.h>

void main ()
 {
   printf("Variables of type int use %d bytes\n", sizeof(int));
   printf("Variables of type float use %d bytes\n", sizeof(float));
   printf("Variables of type double use %d bytes\n", sizeof(double));
   printf("Variables of type unsigned use %d bytes\n", sizeof(unsigned));
   printf("Variables of type long use %d bytes\n", sizeof(long));
 }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -