Combine two Unit8_t

Hi guys,
I want to use the rf96 library that can send only unit8 (to the best of my knowledge)
I want to have two separate unit8 and combine them?
does anyone have any idea?

For example:
uint8_t data1[] = "Hello, this is device 1";
uint8_t data2[] = "ID";

how can I combine the data1 and data2

Thanks

Create a buffer big enough to hold the result, then use strcpy and strcat to put 'em together.

ChrisTenone:
Create a buffer big enough to hold the result, then use strcpy and strcat to put 'em together.

Thanks for your response,
I am not sure if I figured out what exactly to do, and I am not sure how to use strcpy (I am a beginner in Arduino)

Would you please explain a bit more?

Thanks

Here are a couple useful reference sites for elements of C++ not covered by the Arduino Reference pages:

strcat()

strcpy()

uint8_t data1[] = "Hello, this is device 1"
                  "ID";