下列程序的输出结果是( )。 #include int b=2; int func(int*a) { b+=*a;return b;} main() { int a=1,t=2; t+

admin2012-12-03  26

问题 下列程序的输出结果是(    )。
    #include
    int b=2;
    int func(int*a)
    {  b+=*a;return b;}
    main()
    {  int a=1,t=2;
       t+=func(&a);
       printf("%d\n",t);
    }

选项 A、4
B、5
C、6
D、8

答案B

解析 本题考查函数调用时的参数传递。在执行函数func时,由于全局定义了一个变量b,所以在函数体中执行b=24+1=3,最终t=2+3=5。
转载请注明原文地址:https://jikaoti.com/ti/ZwB0FFFM
0

最新回复(0)