c程序输出固定行和列的符号,错哪了?
#include<stdio.h>main()
{
char c;int colum,row;
printf("please input the col and row and the char:");
scanf("%d,%d,%c",&colum,&row,&c);
for(int j=1;j<=row;j++)
{
for(int i=1;i<=colum;i++)
scanf("%c",c);
putchar("\n");
}
return(0);
}