有以下程序 #include<iostream.h> void fun(int a,int b,int c) {a=456,b=567,c=678;} void main( ) {

admin2010-03-29  22

问题 有以下程序        #include<iostream.h>        void fun(int a,int b,int c)        {a=456,b=567,c=678;}        void main( )        {          int x=10,y=20,z=30;          fun(x,y,z);          cout << x << ’ , ’  << y << ’ , ’ << z < endl;        }    输出结果是

选项 A、30,20,10
B、10,20,30
C、456,567,678   
D、678,567,456

答案2

解析 本题考查函数中变量的作用范围,在主函数中给变量x,y,z赋值,然后将其作为实参传递给了函数fun(),虽然在函数fun()中改变了这3个变量的值,但只是同名的局部变量,不影响函数中变量的值,所以在调用函数fun()结束后,主函数3个变量的值未改变。
转载请注明原文地址:https://kaotiyun.com/show/7Ljp777K
0

最新回复(0)