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

C#编程

开发平台:

Visual C++

  1. //9_3
  2. #include <iostream.h>
  3. void Swap(char*& str1, char*& str2);
  4. void main()
  5. {
  6.   char* ap="hello";
  7.   char* bp="how are you?";
  8.   cout <<ap <<endl <<bp <<endl;
  9.   Swap(ap, bp);
  10.   
  11.   cout <<"交换以后:n";
  12.   cout <<ap <<endl <<bp <<endl;
  13. }
  14. void Swap(char*& str1, char*& str2)
  15. {
  16.   char* temp=str1;
  17.   str1=str2;
  18.   str2=temp;
  19. }