const_strings

Controls the const-ness of character string literals.

Syntax
  #pragma const_strings [ on | off | reset ]  
Remarks

If you enable this pragma, the type of string literals is an array const char[n], or const wchar_t[n] for wide strings, where n is the length of the string literal plus 1 for a terminating NUL character. Otherwise, the type char[n] or wchar_t[n] is used.