填空题 以下程序的输出结果是 [11]
#include<iostream. h>
void main()
int *p;
p=new int;
*p=200;
cout<<*p;
delete p;


  • 1、
【正确答案】 1、200    
【答案解析】