问题 填空题

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

答案

参考答案:200

选择题
单项选择题