ch8_10.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch8_10.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. void mystrcpy(char* dest, const char* source)
  6. {
  7.   while(*dest++ = *source++);
  8. }
  9. void main()
  10. {
  11.   char a[20]="How are you!";
  12.   char b[20];
  13.   mystrcpy(b,a);
  14.   cout <<b <<endl;
  15. }