// null-pointer
|
|
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
char *ptr = NULL;
|
|
printf("%s\n", ptr);
|
|
return 0;
|
|
}
|