c++ 字符串处理函数

strcpy(char destination[], const char source[]);

strcpy:将字符串source拷贝到字符串destination 中。
strcpy函数应用举例
原型:

strcpy(char destination[], const char source[]);

功能:将字符串source拷贝到字符串destination中
继续阅读“c++ 字符串处理函数”