Code:
char *t_ptr;
int *ts;

case 555:
	strcpy(t_ptr, "\\555\\");
	t_ptr += 5;
	strcpy(t_ptr, (char *) ts);
	break;
I just need to concatenate t_ptr and ts, but my line of code: strcpy(t_ptr, (char *) ts); does not work. How would I correctly concatenate those two variables? If it's an easy answer, then great! If not, then I'll try to pull out more of my code that's relevant in order for somebody to help me. Thanks!