运行 ❯
获取您
自己
的网站
×
更改方向
更改主题,暗/亮
前往空间
C
#include <stdio.h> int main() { int myVal = 13; printf("Value of integer 'myVal': %d\n", myVal); printf("Size of integer 'myVal': %lu bytes\n", sizeof(myVal)); // 4 bytes printf("Address to 'myVal': %p\n", &myVal); printf("Size of the address to 'myVal': %lu bytes\n", sizeof(&myVal)); // 8 bytes return 0; } //C
C 结果
整型变量 'myVal' 的值:4
整型变量 'myVal' 的大小:4 字节
'myVal' 的地址:0x7ffd87ddb7c4
'myVal' 地址的大小:8 字节