C++

😄指针--定义指针

2019-05-23  本文已影响0人  JiehongYOU
#include <iostream>

using namespace std;

int main() {

    int var = 20; // 实际变量的声明
    int* ip; // 指针变量的声明

    ip = &var; // 在指针变量中,存储var的地址

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

    // 输出在指针变量中存储的地址
    cout << "Address stored in ip variable:";
    cout << ip << endl;

    // 访问指针中地址的值
    cout << "Value of *ip variable:";
    cout << *ip << endl;

    system("pause");
    return 0;


}
结果:
point.png
上一篇 下一篇

猜你喜欢

热点阅读