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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0314.cpp
  3. //=====================================
  4. #include<iostream>
  5. using namespace std;
  6. //-------------------------------------
  7. int main(){
  8.   int a = 78, c = 18;
  9.   const int* ip = &a;
  10.   const int* const icp = &c;
  11.   a = 60;  c = 28;
  12.   cout<<"ip =>"<<*ip<<endl;
  13.   cout<<"icp=>"<<*icp<<endl;
  14. }//====================================
  15.