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

📄 900406_02.c

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 C
字号:
// g++ bug 900406_02// g++ fails to correctly parse some type specifications within casts.// This results in incorrect errors being issued.// These errors are not issued for identical code by either cfront or// by gcc.// cfront 2.0 passes this test.// keywords: syntax, array types, castsint (*ipp)[];int (**ippp)[];int function (){  ipp = (int (*)[]) 0;			// OK  ippp = (int (**)[]) 0;		// gets bogus error (syntax)  return 0;}int main () { return 0; }

⌨️ 快捷键说明

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