C++ Programming MCQ Test 3: Question 4

What will be the output of the following C++ code snippet ?
#include <iostream> 
using namespace std; 

int main(int argc, char const *argv[]) {
    char *str = "Hello\0World";
    cout << str;
    return 0;
}



sec