已知:char a[15],b[15]={"I love china"};则在程序中能将字符串I love china赋给数组a的正确语句是
A.a="I love china";
B.strcpy(b,a);
C.a=b;
D.strcpy(a,b);
请帮忙给出正确答案和分析,谢谢!