运行 ❯
获取你自己的
网站
×
更改方向
更改主题,深浅
进入 Spaces
#include <stdio.h> int main() { int myNumbers[4] = {25, 50, 75, 100}; // Get the value of the second element in myNumbers printf("%d\n", *(myNumbers + 1)); // Get the value of the third element in myNumbers printf("%d", *(myNumbers + 2)); return 0; }
50
75