📄 md_size.c
字号:
#include <stdio.h>
void main(void)
{
int box[3][3];
float year_sales[52][5];
char pages[40][60][20];
printf("Bytes to hold int box[3][3] %d bytes\n", sizeof(box));
printf("Bytes to hold float year_sales[52][5] %d bytes\n",
sizeof(year_sales));
printf("Bytes to hold char pages[40][60][20] %ld bytes\n",
sizeof(pages));
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -