填空题

下列程序的功能是将字符串s中所有的字符c删除。请填空。
#include<stdio.h>
main()
char s[80];
int i,j;
gets(S);
for(i=j0;s[i]!’\0’;i++)
if(s[i]!=’c’)______;
s[j]=’\0;
puts(S);

【参考答案】

s[j++]=s[i]