pathologydecls1.cpp
来自「压缩包里有教材<<C++模式设计-基于QT4开源跨平台开发框架>」· C++ 代码 · 共 15 行
CPP
15 行
#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 + =
减小字号Ctrl + -
显示快捷键?