通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
有以下程序:
#include <stdio.h> main() { char s1[]="programe",s2[]="Language"; char *p1=s1,*p2=s2; int k; for(k=0;k<8;k++) if(*(p1+k)==*(p2+k)) printf("%s ",(p1+k)); }
程序的运行结果是()。