strcpy(char destination[], const char source[]); strcpy:将字符串source 拷贝到字符串destination 中。 strcpy 函数应用举例 原型:strcpy(char destination[], const char source[]); 功能:将字符串source 拷贝到字符串destination 中 例程: #include #include void main(void) { char str1[10] = { "TsinghuaOK"}; char str2[10] = { "Computer"}; cout < #include void main(void) { char str1[10] = { "Tsinghua "}; char str2[10] = { "Computer"}; cout < #include void main(void) { char str1[] = { "Tsinghua "}; char str2[] = { "Computer"}; cout <