运行 ❯
获取你
自己的
网站
×
更改方向
更改主题,暗/亮
转到 Spaces
#include <stdio.h> int main() { int myNumbers[4] = {25, 50, 75, 100}; // Get the memory address of the myNumbers array printf("%p\n", myNumbers); // Get the memory address of the first array element printf("%p\n", &myNumbers[0]); return 0; }
0x7ffe70f9d8f0
0x7ffe70f9d8f0