填空题
以下程序运行后的输出结果是_________。 #include void fun(char *s,int p,int k) { int i; for(i=p;i} main() { char s[]="abcdefg"; fun(s,3,strlen(s)); puts(s); }