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

📄 900324_04.c

📁 linux下的gcc编译器
💻 C
字号:
// g++ 1.37.1 bug 900324_04// g++ implements an extension which supports the copying of array objects.// This extension is not described in the current C++ Reference Manual, and// it is not implemented by cfront (2.0).// g++ should generate errors for the use of this extension when -pedantic// is used, however it does not.// Cfront 2.0 passes this test.// keywords: extension, pedantic, arrays, copytypedef int int_array[20];int_array ia1;int_array ia2;void function_0 (){  ia1 = ia2;		// ERROR - gnu extension}int main () { return 0; }

⌨️ 快捷键说明

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