20個✕10行にしたいのですがうまく行かず、横が20個になりません。どうしたらいいのでしょうか
#include 〈stdio.h〉
#include〈stdlib.h〉
#include〈time.h〉
int main (void)
}
int counter, point,num;
srand (time(0)) ;
for (counter=0; counter<=10; counter++){
for (point=0; point<=20; point++){
num=rand();
printf("%d",num);
}
printf("¥n");
}
return 0;
}[EOF]