C++でstrcpy()を実現して、1つのchar*タイプの深く入り込む分析を返します。


コードは以下の通りです。

#include "stdafx.h"
#include <string>
#include <iostream>
using namespace std;
char* strcpy(char *src_str, char *dest_str)
{
 char* dest = dest_str;
 if ((src_str == NULL)||(dest_str == NULL))  //
 {
  throw "Invalid argument(s)";   //
 }
 while((*dest_str++ = *src_str++) != '\0')  // , ‘/0'
 {
  NULL;
 }
 return dest;
}

int _tmain(int argc, _TCHAR* argv[])
{
 char src[] = "Hello,world!";
 char des[13] = {0};
 strcpy(src, des);
 cout << des << endl;
 return 0;
}