填空题

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

【参考答案】

s[j++]=s[i]