📄 pathologydecls1.cpp
字号:
#include <iostream>using namespace std;//startint main() { int a, b, c; /* As expected, this line creates three ints.*/ int* d, e, f; /* This line creates one pointer to an int and two ints. (!) */ int *g, *h; /* This line creates two pointers to int. */ int* i, * j; /* This line also creates two pointers to int. */ return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -