C++使用指针

#include iostreamusing namespace std;int main () {intvar = 20;// actual variable declaration.

编程学习网为您整理以下代码实例,主要实现:C++使用指针,希望可以帮到各位朋友。

#include <iostream>

using namespace std;

int main () {
   int  var = 20;   // actual variable declaration.
   int  *ip;        // pointer variable 

   ip = &var;       // store address of var in pointer variable

   cout << "Value of var variable: ";
   cout << var << endl;

   // print the address stored in ip pointer variable
   cout << "Address stored in ip variable: ";
   cout << ip << endl;

   // access the value at the address available in pointer
   cout << "Value of *ip variable: ";
   cout << *ip << endl;

   return 0;
}

本文标题为:C++使用指针

上一篇: C++指针
下一篇: C++ NULL指针