6 lines
59 B
C++
6 lines
59 B
C++
int main()
|
|
{
|
|
int* test = nullptr;
|
|
return test ? 1 : 0;
|
|
}
|