运行 ❯
获取你的
自己的
网站
×
更改方向
更改主题,亮色/暗色
进入 Spaces
#include <stdio.h> int main() { int myInt; float myFloat; double myDouble; char myChar; printf("%lu\n", sizeof(myInt)); printf("%lu\n", sizeof(myFloat)); printf("%lu\n", sizeof(myDouble)); printf("%lu\n", sizeof(myChar)); return 0; }
4
4
8
1