C++基础知识(四)指针

1.一个变量的地址称为该变量的指针。

2.*表示指向

  i=3;

  *i_pointer = 3;

3.

原文地址:https://www.cnblogs.com/h-haha/p/4547556.html