#include <stdio.h>main(){ int i,a[10]; for(i=0;i<=9;i=i+1) a[i]=i;
printf("%d",a[i]);}我想要的结果是0 1 2 3 4 5 6 7 8 9.但结果是10.