Added null_printf.c

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

9
null_printf.c Normal file
View File

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