20000910-1.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 28 行
C
28 行
/* Copyright (C) 2000 Free Software Foundation *//* by Alexandre Oliva <aoliva@redhat.com> */#include <stdlib.h>void bar (int);void foo (int *);int main () { static int a[] = { 0, 1, 2 }; int *i = &a[sizeof(a)/sizeof(*a)]; while (i-- > a) foo (i); exit (0);}void baz (int, int);void bar (int i) { baz (i, i); }void foo (int *i) { bar (*i); }void baz (int i, int j) { if (i != j) abort ();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?