数组问题,将数组a中的*删除并输出
#include"stdio.h"int main()
{
char a[80],b[80];
int i,j,count;
count=0;
printf("请输入一串字符:\n");
gets(a);
for(i=0;a[i]!='\0';i++)
{
while(a[i]!='*')
{
count++;
for(j=0;j<count;j++)
b[j]=a[i];
}
}
b[j+1]='\0';
puts(b);
}
求指导!