Safe Initialization

#include <iostream>
using namespace std;

int main() {
    // your code here 
    cout << NULL << endl << nullptr << endl;
    // cout the null and nullptr
}
Upvote
Downvote
Loading...

Input

Expected Output

0 nullptr