C++程序  |  8行  |  68 B

#include <signal.h>

int main(void)
{
	raise(SIGSEGV);
	return 0;
}