单项选择题

设有定义:

class C

{ public:

int value;



};

int x,*p;

则以下引用形式中,正确的是

A.x=value;
B.x=C::value;
C.p=&value
D.p=C::value