I've got two const char [] PROGMEM
variables that I need to concatenate into another const char [] PROGMEM
. I'm totally new to C and couldn't understand how to use strncpy
on a previous question.
const char data_one[] PROGMEM = {0x00,0x01,0x02};
const char data_combined[] PROGMEM = data_one + "{0x03,0x04,0x05}";