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