填空题

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

【参考答案】

200