单项选择题

下列程序的执行结果为
# include <iostream.h>
void main ( )

int a=3,b=0;
int * p=&a;
b= +a++;
cout << * p <<"," << b << endl;

A.3,4
B.4,3
C.3,4
D.4,4