9_3.cpp
Upload User: puke2000
Upload Date: 2022-07-25
Package Size: 912k
Code Size: 0k
Category:

CSharp

Development Platform:

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. }