【VC开源代码栏目提醒】:网学会员,鉴于大家对VC开源代码十分关注,论文会员在此为大家搜集整理了“Strcpy.cpp”一文,供大家参考学习!
// Strcpy.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
bool cpystr(char *pdst, const char *psrc)
{
char *pch = pdst;
if (pdst==NULL || psrc == NULL)
return false;
while ((*pdst++ = *psrc++) != '\0')
;
return true;
}
int main(int argc, char* argv[])
{
char data[30];
if (cpystr(data,"One world,one dream!"))
printf("%s\n",data);
return 0;
}