#include<stdio.h>int main(){ int i,a[10]; for(i=0;i<=9;i++) a[i]=i; for(i=0;i<10;i++)printf("%d",a[i]); return 0;}为什么一直出现的是10,而不是数组呢,求教 查看完整描述