填空题

以下程序用以删除字符串中所有的空格,请填空。
#include <stdio.h>
main()
char s[100]="our teacher teach c language!";int i,j;
for(i=j=0;s[i]!=’\0’;i++)
if(s[i]! =’’)s[j]=s[i];j++;
s[j]=______;
printf("%s\n",s);

【参考答案】

’\0’或0