20010113-1.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 16 行

C
16
字号
/* Origin: PR c/364 from and@genesyslab.com, very much reduced to a   testcase by Joseph Myers <jsm28@cam.ac.uk>.   The initializer of z is a valid address constant, and GCC 2.95.2   accepts it as such.  CVS GCC as of 2001-01-13 rejects it, but accepts   it if y is changed to x in the initializer.  */struct {  struct {    int x;    int y;  } p;} v;int *z = &((&(v.p))->y);

⌨️ 快捷键说明

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