把从src地址开始且含有NULL结束符的字符串复制到以dest开始的地址空间
for (i=0;strSrc[i]!='\0';i++) { strDest[i]=strSrc[i]; } strDest[i]='\0'; return address;}