运行 ❯
获取您
自己的
网站
×
更改方向
更改主题,浅色/深色
前往 Spaces
#include <stdio.h> int main() { int myAge = 43; // Variable declaration int* ptr = &myAge; // Pointer declaration // Reference: Output the memory address of myAge with the pointer (0x7ffe5367e044) printf("%p\n", ptr); // Dereference: Output the value of myAge with the pointer (43) printf("%d\n", *ptr); return 0; }
0x7ffe5367e044
43