Added null_printf.cpp

This commit is contained in:
anon 2024-03-10 15:57:36 +01:00
parent 3c676ac5fd
commit ccd69afd2c

9
null_printf.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <cstdio>
int main() {
const char* myString = NULL;
printf("%s\n", myString);
return 0;
}