单项选择题

有如下程序段,其中会产生编译错误的语句是
inti=0,j=1;
int &r=i; //①
r=j; //②
int * p=&i; //③
* p=&r; //④

A.④
B.③
C.②
D.①