?? arraysiz.c
字號(hào):
#include <stdio.h>
void main(void)
{
int scores[100];
float salaries[100];
char string[100];
printf("Bytes used to hold int scores[100] is %d bytes\n",
sizeof(scores));
printf("Bytes used to hold int salaries[100] is %d bytes\n",
sizeof(salaries));
printf("Bytes used to hold char string[100] is %d bytes\n",
sizeof(string));
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -