#include<stdio.h>#include <string.h>void main(){ char x[]="STRING"; x[0]=0; x[1]='\0'; x[2]='0'; printf("%d\t\t%d\n",sizeof(x),strlen(x));}谁能给我解释一下这个程序啊,我不能理解