函数 intersec 的功能是:将既出现在 s1 中、又出现在 s2 中的字符串保存到 s3 字符串中,函数返回 s3 中字符串的个数。 源程序如下: #include #include int intersec(char s1[][10],char s2[][10],char s3[][10],int m,int n){ int i,j,k=0; for(i=0;i for(j=0;j if(strcmp(s1[i],s2[j])==0){ strcpy(s3[k++],s1[i]); 【 1 】 ; } return k; } main(){ int i,j; char s1[6][10]={"while","for","switch","continue","if","void"}; char s2[6][10]={"for","do","char","switch","else","void"}; char s3[12][10]; j= 【 2 】 ; for(i=0;i printf("%s\n", 【 3 】 ); }