下面程序的运行结果是()。
#includeint main(){ int  *a, b=3; *a=b; printf("%d",*a) ;}
A、0
B、3
C、不确定
D、程序无法正常运行