Controls whether string objects are placed in a read-write or a read-only data section.
#pragma readonly_strings on | off | reset
If you enable this pragma, literal strings used in your source code are output to the read-only data section instead of the global data section. In effect, these strings act like constchar* , even though their type is really char* .
This pragma does not correspond to any IDE panel setting.