int t; a[10]={0,1,2,3,4,5,6,7,8,9}; t=a[9]; pintf("%d",t); 这里面的a[9]是不是就是上面的数组空间里的9?我是这样想的因为内存地址一般不是从0算起的嘛?是不是我想的这样?