loop initial decraration used outside C99 mode ======エラーがでたfor ========= for(int i=0;j<10;i++){ printf("%d",i); } ======修正 for ========= int i; for(i=0;j<10;i++){ printf("%d",i); }