pathologydecls1.cpp

来自「QT方面的开发」· 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 + -
显示快捷键?