有以下程序 #include int fun(char s[]) { char *p=s; while(*p!=0) p++; return(p-s); } main() { printf

admin2016-12-28  26

问题 有以下程序
    #include  
    int fun(char s[])  {
    char *p=s;
    while(*p!=0)  p++;
    return(p-s);  }
    main()  {
    printf("%d\n",fun("0ABC DEF"));}
    程序运行后的输出结果是

选项 A、6
B、7
C、1
D、0

答案B

解析 函数fun的土要功能是计算字符串中实际字符的个数.因此主函数中调用fun得到结果为7。
转载请注明原文地址:https://kaotiyun.com/show/ywDp777K
0

随机试题
最新回复(0)