qfedu-c-level/day7/d11.c

11 lines
146 B
C

#include <stdio.h>
int main()
{
extern int m;
{
int m;
printf("%d\n", m / 0); // 除 0 编译测试
}
return 0;
}