填空题
以下程序的输出结果是
__
1
__
。
#include<iostream. h>
void main() {
int *p;
p=new int;
*p=200;
cout<<*p;
delete p;
}
【正确答案】
【答案解析】
200
提交答案
关闭