int main()
{
int *a; // a = 0x4053c6 (a random address)
// this will cause the program to exit, and how do i know this memory can't be written ?
*a = 5;
return 0;
}
混乱している!つまり、このスニペットは常にプログラムをクラッシュさせるのでしょうか?そして、このプログラムが最初から最後まで実行できる場合はありますか?