#include int main(void){ int a[10],i; for (i = 1; i <= 10; i++) { a[i]=0; printf("%d\n",i); } return 0; }