#include <stdio.h>int main( ){ int a[ ]={1,2,3,4,5,6,7,8,9,0},*p; p=a; printf("\n%d",*p+9); return 0;} 查看完整描述