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