strcpy


头文件:string.h

例:

	//拷贝字符串 将str4拷贝到str5中
	char str5[20];
	strcpy_s(str5, str4);   //
	printf("str5的值为:%s", str5);//输出结果为:dcba