20000801-2.c

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

C
41
字号
extern void abort(void);extern void exit(int);int bar(void);int baz(void);struct foo {  struct foo *next;};struct foo *test(struct foo *node){  while (node) {    if (bar() && !baz())      break;    node = node->next;  }  return node;}int bar (void){  return 0;}int baz (void){  return 0;}int main(void){  struct foo a, b, *c;  a.next = &b;  b.next = (struct foo *)0;  c = test(&a);  if (c)    abort();  exit (0);}

⌨️ 快捷键说明

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