11 lines
118 B
C
11 lines
118 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
char *object = 0;
|
|
|
|
if (object == NULL) {
|
|
puts("object is null");
|
|
}
|
|
return 0;
|
|
}
|