Kennedy is correct. I think you could also try making them both pointers, or at least make the first one a pointer.

char * str_1 = "First String ";
char * str_2 = "Second String";

That way you...