📄 vla.c
字号:
//Origin: kengole@us.ibm.com//PR c++/2478// G++ was rejecting this as it could not convert `int (*)[]' to `int (*)[0]'.// Using the C99 VLA style arrays in a struct.// { dg-do compile }struct S { int (*p)[];} B;void foo() { int (*p)[]; B.p=p; // { dg-bogus "cannot convert" }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -