Q79
What will be the output of the following C++ code? #include #include #include using namespace std; int main(int argc, char const *argv[]) const char *a = "Hello\0World"; cout<<a; return 0;
A.
Hello World
B.
Hello
AnswerC.
World
D.
Error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board