?? num_els.c
字號:
#include <stdio.h>
void main(void)
{
int int_values[] = {51, 23, 2, 44, 45};
float float_values[] = {21.1, 13.3, 22.2, 34.4, 15.5};
printf("Number of elements in int_values %d\n",
sizeof(int_values) / sizeof(int_values[0]));
printf("Number of elements in float_values %d\n",
sizeof(float_values) / sizeof(float_values[0]));
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -