I'm having some trouble doing something like this:

Code:
char first[10];
char second[10];
char third[10];
char final[30];

final = first + second + third;
I get an error saying "cannot add two pointers", how would I do this?