Sign in
◑
Theme
mingw
/
mingw-w64
/
31c44594ccc843d9d70b2ed815f4063333ead6a1
/
.
/
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
;
}