#include <iostream>
using namespace std;

int main()
{
    if(nullptr == 0)
        cout << "This will print" << endl;

    int* ptr = nullptr;
    if(ptr == 0)
        cout << "This will also print" << endl;

    if(ptr == nullptr)
        cout << "So will this" << endl;

    return 0;
}