单项选择题

以下不能将S所指字符串正确复制到t所指存储空间的是

A.while(*t=*s) t++; s++;
B.for(i=0; t[i]=s[i];i++);
C.do*t++=*s++; while(*s);
D.for(i= 0,j=0;t[i++]=s[j++];);