#include <stdio.h>
int main() {
int myNumbers[4] = {25, 50, 75, 100};
// 获取 myNumbers 数组中第一个元素的值
printf("%d", *myNumbers);
return 0;
}