It's required by the C standard.
6.7.8.14 of C99:
``
An array of character type may be initialized by a character string literal, optionally
enclosed in braces. Successive characters of the character string literal (including the
terminating null character if there is room or if the array is of unknown size) initialize the
elements of the array.
''
Note the "if there is room".
I believe the rationale is that it still allows to conveniently initialize
non zero terminated strings.
-Andi
-