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