// CPP_Test@2014.10.22.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <assert.h> /************************************************************************/ /* copyright (c) 2014 kernel_main /* c++试常考点 /* 转载请注明出处:http://www.cnblogs.com/kernel0815/ /************************************************************************/ //strcpy 函数实现 char* strcpy(char* strDst, const char* strSrc) { assert((NULL!=strDst) && (NULL!=strSrc));//断言字符串地址非0 char* address = strDst; while((*strDst++ = *strSrc++) != '