main.cpp 148 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 int main(int argc, char **argv) { // Perform a null pointer access. int *const null_int_ptr = nullptr; *null_int_ptr = 0xDEAD; return 0; }