I have a a char array:
char* name = "hello";
hello.txt
name += ".txt"
If I have two char arrays like so:
char one[200]; char two[200];
char three[400]; strcpy(three, one); strcat(three, two);