这段程序有什么问题吗,请帮忙改正一下!

#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;
}

UYOU
浏览 119回答 1
1回答

小怪兽爱吃肉

函数fn1错了。应该是int *p=new int;*p=5;return *p;
打开App,查看更多内容
随时随地看视频慕课网APP