下列程序的输出结果是()
填空题下列程序的输出结果是 ()。 #include #include main( ) { int i=0; char str1[10]=“1234”, str2[10]= “567”; strcat(str1,str2); while(str2[i++]!=‘ 0’) str2[i]=str1[i]; puts(str2); }
填空题下列程序段的输出结果是()。 char str[ ]= “abc 0def 0ghi”, *q=str; printf(“%s”,q+5);
填空题下列程序的输出结果是()
问答题下列程序的功能是统计一个文本文件中的字符数量。请在程序的横线上方填上必要的内容,使之完整。