6_28.cpp
来自「C++语言程序设计案例教程,郑莉编的书」· C++ 代码 · 共 11 行
CPP
11 行
#include <iostream>
using namespace std;
int main()
{ double a,b;
double *p=&a,*q=&b;
//判断两个指针是否指向同一块内存位置
if (p==q) cout<<"The pointer of p is equal to q"<<endl;
else if(p>q) cout<<"The address of a :"<<p<<" is larger than the address of b:"<<q;
else cout<<"The address of a :"<<p<<" is smaller than the address of b:"<<q;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?