Related pages:
const char PROGMEM formatString[] = "Output: %S"; /* special large S */ const char PROGMEM outputVariable[] = "Hello"; sprintf_P(buffer, formatString, outputVariable);
sprintf(buffer, "Output: %s", "Hello"); /* standard small s */
const char * const ReportDescParserBase::usagePageTitles0[] PROGMEM = {};
const char my_string[] PROGMEM = "Some text"; strcpy_P(buffer, my_string);