填空题

请填写空格: #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); 【10】 ; //输出调用fun函数后返回a、b的和。 }

【参考答案】

cout<<*p;