标签:int 内存地址 .com char reserve 存储 http using center
// 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;
}
标签:int 内存地址 .com char reserve 存储 http using center
原文地址:https://www.cnblogs.com/overlows/p/10656668.html