C语言字符串操作函数总结
C语言字符串操作函数总结Part 1: Copying1、 函数名: strcpy用 法: char * strcpy ( char * destination, const char * source );功 能: 串拷贝(Copies the C string pointed by source into the array pointed by destination, including the terminating null character...