填空题

以下程序的功能是:删除字符串中所有的空格。请填空。
#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)