c_cpp C ++指针

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 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_cpp C ++指针的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp C ++这个指针调试

c_cpp C ++指针使用练习

c_cpp C - 指针作为参数

c_cpp 指针迭代与C中的int指针

c_cpp c加上数组指针算术

c_cpp C ++中的char指针示例