#include<stdio.h> main() { int arr[ ]={30,25,20,15,10,5}, *p=arr; p++; printf(“%d\n”,*(p+3)); }
运行结果为:
10
15
5
用户登录可进行刷题及查看答案
登录后提交答案