Find any errors in the following and explain how to correct them:
```
std::cout << s.data() << std::endl; // s is "hello"
```
The array returned by data is not null terminated.
Computer Science & Information Technology
```
std::cout << s.data() << std::endl; // s is "hello"
```
The array returned by data is not null terminated.