Hello,

I am trying to combine to chars together, having a big of problem

char char1;
char char2;


char1 = 'one';
char2 = ' two';


char1 = (char1[3] + char2[0];




printf("%s",char1);
what's the correct code?