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

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch8_17.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. void main()
  6. {
  7.   char buffer[10]="ABC ";
  8.   char* pc;
  9.   pc="hello";    //ok: 将字符串常量的首地址赋给指针
  10.   cout <<pc <<endl;
  11.   pc++;
  12.   cout <<pc <<endl;
  13.   cout <<*pc <<endl;
  14.   pc=buffer;
  15.   cout <<pc;
  16. }