This is what I want. I tried it many ways, but not successful. I want to copy 2nd array values to end of 1st array.
uint8_t *set = getCharacterPattern('A');
uint8_t *set2 = getCharacterPattern('B');
// Here I want to copy *set2 values to end of *set array
for (uint8_t i=0; i<(getCharacterSize(A)+getCharacterSize('B')); i++){
setLed(0,i,set[i]);
}
Please help me someone.