Added null_printf.c
This commit is contained in:
9
null_printf.c
Normal file
9
null_printf.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
const char* myString = NULL;
|
||||
|
||||
printf("%s\n", myString);
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user