blob: 9caf9d8c97d48d754bdf38f902313de7bf4ebf92 [file] [log] [blame]
#include <stdio.h>
int main(int argc, const char* argv[])
{
int *null_ptr = 0;
printf("Hello, fault!\n");
printf("Now segfault %d\n", *null_ptr);
}