填空题
下列程序的运行结果是: 【16】 #include <string.h> char *ss(char *s) { return s+strlen(s)/2;} main( ) { char *p,*str=”abcdefgh”; p=ss(str); printf(“%s\n”,p);}