<p><br>
On Mar 16, 2012 7:45 AM, "Alex Rønne Petersen" <<a href="mailto:xtzgzorex@gmail.com">xtzgzorex@gmail.com</a>> wrote<br>
><br>
> I don't see any reason why c couldn't point to element number 3 of b, and have its length set to 3...<br>
><br>
> -- <br>
> - Alex</p>
<p>And the previous examples were language agnostic. In D and other languages where the length of a string is stored we can nest strings anywhere inside other strings.</p>
<p>const char[] a = "foofoo";<br>
const char[] b = "oof";</p>
<p>Those can't be nested in null terminated strings, bit they can where strings have an explicit length.<br>
</p>