This section needs a general clean up, fixing typos and more links:
https://dlang.org/spec/arrays.html#strings
> char[] strings are in UTF-8 format. wchar[] strings are in UTF-16 format. dchar[] strings are in UTF-32 format.
The above is a bit confusing as strings always have immutable elements.
> Since strings, however, are not 0 terminated in D
This should be moved to the zero-terminated literals section.
char* p = &str[3]; // pointer to 4th element
char* p = str; // pointer to 1st element
The second declaration no longer compiles.
PR incoming.