填空题

下面程序运行输出的结果是 【9】 。 #include <iostream> using namespace std; int main(){ char a[]="Chinese"; a[3]=’\0’; cout<<a<<endl; return 0; }

【参考答案】

Chi