下列程序的输出结果是______________。 #include #include using namespace std; void fun(const char*s,char&c){c=s[strlen(s)/2];

admin2012-12-29  29

问题 下列程序的输出结果是______________。
    #include
    #include
    using namespace std;
    void fun(const char*s,char&c){c=s[strlen(s)/2];}
    int main()
    {
       char str[]=“ABCDE”;
       char ch=str[1];
       fun(str,ch);
       cout<       return 0;
    }

选项

答案C

解析 此题考查的是数组的定义使用以及函数的调用。fun函数的作用是将字符串str中间的字符串赋值给地址传入的变量ch。所以ch的值最终变为C。
转载请注明原文地址:https://kaotiyun.com/show/zrVp777K
0

最新回复(0)