// 444.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <stdio.h> #include<stdlib.h> #include <string.h> #define MAX_MSG_LENGTH 600 char *strcpy1(char *strDes, char *strSrc){ if(strSrc==NULL) return strDes; //若strSrc为NULL,则抛出异常。 strDes=(char *)malloc(strlen(strSrc)+1); //多一个空间用来存储字符串结束符' ' char *p=strDes; while(*strSrc!='