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; }