指针变量图解
Posted overlows
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了指针变量图解相关的知识,希望对你有一定的参考价值。
// main.cpp
// 指针
// Created by mac on 2019/4/4.
// Copyright ? 2019年 mac. All rights reserved.
// 1.指针变量只用于存储内存地址,根据内存地址去查找里面存储的数据。
#include <iostream>
using namespace std;
int main(int argc, const char * argv[]) {
int a=15;
int *p;
int *q=&a;
p=(int *)a;
cout<<a<<endl;
cout<<p<<endl;
cout<<&a<<endl;
cout<<q<<endl;
return 0;
}
以上是关于指针变量图解的主要内容,如果未能解决你的问题,请参考以下文章