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