有如下程序: #include using namespace std; int main() { void function(double val); double vat: function(va

admin2020-12-21  27

问题 有如下程序:
    #include
    using namespace std;
    int main()
    {
    void function(double val);
    double vat:
    function(val);
    cout<<vat:
    return 0;
    }
    void function(double vat)
    {  vat=3;}
    编译运行这个程序将出现的情况是(    )。

选项 A、编译出错,无法运行
B、输出:3
C、输出:3.O
D、输出一个不确定的数

答案D

解析 本题考查函数调用及传值方式传递参数,执行函数function时,并没有将3的值传回来,而val又没有初始化,所以会输出一个不确定的值,D选项正确。
转载请注明原文地址:https://kaotiyun.com/show/kdyp777K
0

最新回复(0)