...
Initializing a character array using a string literal to fit exactly without a null byte is not allowed in C++.
...
Noncompliant Code Example
This non-compliant noncompliant code example initializes an array of characters using a string literal that defines one more character (counting the terminating '\0'
) than the array can hold.
...