📄 var_address.cpp
字号:
//var_address.cpp
#include <iostream.h>
#include <conio.h>
void main()
{ short a=10,b; //短整数占2 bytes
int c=23,d; //整数占4 bytes
float p=1.1,q; //浮点数占4 bytes
cout << "&a=" << &a << endl;
cout << "&b=" << &b << endl;
cout << "&c=" << &c << endl;
cout << "&d=" << &d << endl;
cout << "&p=" << &p <<endl;
cout << "&q=" << &q << endl;
getch();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -