单项选择题

若有定义和语句
int * *pp, *p,a=10,b=20;
pp=&p;p=&a;p=&b;printf("%d,%d\n",*p,**pp);
则输出结果是 ( )

A.10,10
B.10,20
C.20,10
D.20,20