⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 incomplete.c

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 C
字号:
// Build don't link:// gcc represents non-ellipsis parmlists by terminating them with// a void parm. We need to distinguish between a parmlist of (void), and// some ill-formed ones.struct S; // ERROR - forward refvoid f(S);            // okvoid f(S s) {}        // ERROR - incomplete typevoid j (int){};       // okvoid k (){};          // okvoid q (void){}       // okvoid t (void t);      // ERROR - incompletevoid r (void, ...);   // ERROR - incompletevoid s (void const);  // ERROR - incomplete

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -