设int i,j=2,*p=&i;,能将j的值赋给i的正确语句是

设int i,j=2,*p=&i;,能将j的值赋给i的正确语句是
A、i=*p;
B、*p=j;
C、i=&j;
D、*i=*p;
【正确答案】:B