Is there a command that can append one array of char onto another? Something that would theoretically work like this:
//array1 has already been set to \"The dog
You should have enough space for array1 array and use something like strcat to contact array1 to array2:
array1
strcat
array2
char array1[BIG_ENOUGH]; char array2[X]; /* ...... */ /* check array bounds */ /* ...... */ strcat(array1, array2);