+ 1
Explain why the following code prints the message âHello worldâ instead of giving an error?
char arr[] = âHello worldâ; cout<< arr;
2 Answers
+ 2
Don't you think it is basically because of the cstring library
+ 1
Because a string is a char array.