C语言-字符串操作库函数{strcpy(),sprintf(),sscanf(),strcmp(),strstr(),strtok(),atoi(),atof(),atol()}
#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>#include <stdlib.h>#include <string.h>//要使用字符串操作库函数,必需要加入<string.h>头文件int main(){ //下面是关于strcpy(str1,str2)函数的介