有以下程序
Main()

有以下程序
Main()
{ int a=1,b=3,c=5;
Int *p1=&a,*p2=&b,*p=&c;
*p=*p1*(*p2);
Printf("%d\n",c);
}
执行后的输出结果是______。

A.1

B.2

C.3

D.4

正确答案是C