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