#include <iostream>using namespace std;int fn1( );int main( ){int a=fn1( );cout<<"the value of a is: "<<a;return 0;}int fn1( ){int *p=new int(5);return *p;}
- 1 回答
- 0 关注
- 117 浏览
添加回答
举报
0/150
提交
取消