...
A better approach is to not specify the bound of a string initialized with a string literal, as the compiler will automatically allocate sufficient space for the entire string literal, including the terminating null character. This rule is a specific exception to ARR02-AC. Explicitly specify array bounds, even if implicitly defined by an initializer.
...