有如下程序:include<iostream>using namespace std;int main(){int *p;*p=9;cout<<"The value a

有如下程序: include<iostream> using namespace std; int main() { int *p; *p=9; cout<<"The value at p:"<<*p; return 0; } 编译运行程序将出现的情况是()。 A.编译时出现语法错误,不能生成可执行文件 B.运行时一定输出:The value at p:9 C.运行时一定输出:The value at p:*9 D.运行时有可能出错

时间:2023-01-28 17:12:28

相似题目