#include<stdio.h> int fun(char*s) {char*p=s; while(*p!=’\0’)p++; return(p-s);} main() {printf("%d\n",fun

admin2010-04-27  78

问题 #include<stdio.h>
   int fun(char*s)
   {char*p=s;
   while(*p!=’\0’)p++;
   return(p-s);}
   main()
   {printf("%d\n",fun("hello world"));
   }
   程序运行结果是:______

选项

答案11

解析  该程序是计算在主函数中输入字符串中字母的个数。
转载请注明原文地址:https://kaotiyun.com/show/BTAx777K
0

最新回复(0)