Sign in
mingw
/
mingw-w64
/
381815e194038a4eb96c6381df5391207b23bcda
/
.
/
mingw-w64-crt
/
testcases
/
t_nullptrexception.c
blob: 3c2c47adee7a85b5f7475682ac4efa1a27793c6a [
file
] [
log
] [
blame
]
#include
<stdio.h>
char
*
p
=
NULL
;
int
main
()
{
printf
(
"Raise uncaught NULL pointer exception...\n"
);
*
p
=
0
;
return
0
;
}