#include "iostream.h"void main(){ char *pa="hello"; char *pb="how are you"; char *temp=NULL; cout<<"原来的指针对象:"< cout< cout< temp=pa; pa=pb; pb=temp; cout<<"交换后的指针对象"< cout< cout<}