nestfunc-7.c

来自「用于进行gcc测试」· C语言 代码 · 共 45 行

C
45
字号
struct A{  int one;  int two;  int three;  int four;  int five;  int six;};static int test (void){  int base;  struct A Foo (void)    {      struct A a;      a.one = base + 1;      a.two = base + 2;      a.three = base + 3;      a.four = base + 4;      a.five = base + 5;      a.six = base + 6;      return a;    }  base = 10;  struct A a = Foo ();  return (a.one == 11	  && a.two == 12	  && a.three == 13	  && a.four == 14	  && a.five == 15	  && a.six == 16);}int main (void){  return !test ();}

⌨️ 快捷键说明

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