#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 關注
- 136 瀏覽
添加回答
舉報
0/150
提交
取消