单项选择题

有如下程序:
#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.运行时有可能出错