- 论坛徽章:
- 0
|
整体的程序是这样子的:
- // This is the main project file for VC++ application project
- // generated using an Application Wizard.
- #include "stdafx.h"
- #include <iostream>
- using namespace std;
- #using <mscorlib.dll>
- using namespace System;
- int strcopy(char * source, char * target);
- int _tmain(int argc, char ** argv)
- {
-
- char * source = "HelloWorld";
- int i = strlen(source);
- cout << i <<endl;
- char * target;
- target = new char [i+1];
-
- int j = strlen(target);
- cout << j <<endl;
- int error;
- if ((error = strcopy(source,target)) >= 0)
- {
- cerr << "copy success" <<error<<endl;
- }
- cout << "target is:" << target <<endl;
- delete [] target;
- return 0;
- }
- int strcopy(char * source, char * target)
- {
- int position = 0;
- while ( source[position] != '\0')
- {
- target[position] = source[position];
- position ++;
- }
- return position;
- }
复制代码 |
|