通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
有如下程序段,产生编译错误的语句是()。
int i=0,j=1; int &r=i; //① r=j; //② int *p=&i; //③ *p=&r; //④