void crash (void)
{
printf(got here);
*((char *) 0) = 0;
}
The function crash(), defined above, triggers a fault in the memory management hardware for many architectures. Which one of the following explains why got here may not be printed before the crash?
Reveal answer
Fill a bubble to check yourself