📄 sizeof.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 + -