请填写空格: #include<iostream> using namespace std; void fun(int x,int y,int * z) { *2 = x + y;} void main() {

admin2009-01-15  27

问题 请填写空格:
   #include<iostream>
   using namespace std;
   void fun(int x,int y,int * z)
   { *2 = x + y;}
   void main()
   {
        int a=100,b=100,c,*p=&c;
        fun(a,b,p);
         【  】;        //输出调用fun函数后返回a、b的和。
   }

选项

答案cout<<*p;

解析 函数 fun()通过指针可以带回返回值,a、b的和存放在*p中。
转载请注明原文地址:https://kaotiyun.com/show/zckp777K
0

随机试题
最新回复(0)