📄 lp.c
字号:
#include <stdio.h>void main(){ printf("Length of char is %d byte(s)\n",sizeof(char)); printf("Length of short is %d byte(s)\n",sizeof(short)); printf("Length of int is %d byte(s)\n",sizeof(int)); printf("Length of long is %d byte(s)\n",sizeof(long)); printf("Length of long long is %d byte(s)\n",sizeof(long long)); printf("Length of pointer is %d byte(s)\n",sizeof(char *)); printf("Length of float is %d byte(s)\n",sizeof(float)); printf("Length of double is %d byte(s)\n",sizeof(double)); printf("Length of long double is %d byte(s)\n",sizeof(long double)); return;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -