Bah - I can crash C in 5 characters:
main;
This declares an implicit int
variable called 'main'.
It's global so the variable has an initial value of 0
.
It's C the names aren't decorated - so the linker doesn't realize that it's a var and not a function.
GCC gave me a warning - but that's all.
$ gcc crash.c
crash.c:1: warning: data definition has no type or storage class
$ ./a.exe
Segmentation fault (core dumped)
$
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…