📄 900321_05.c
字号:
// g++ 1.37.1 bug 900321_05// The following code is legal as far as the ANSI C standard, GCC, and// cfront are concerned, however g++ issues errors for the lines indicated.// Cfront 2.0 passes this test.// keywords: operator[], pointers, indexchar c;char *cp;int i;void function (){ c = 3["abcdef"]; // gets bogus error c = i[cp]; // gets bogus error}int main () { return 0; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -