Let's say I have a char array, okay?

I initialize it:

char gerbil[255] = "mike tyson";

But let's say that, later in the program, I want to add the following string to the beginning of it:

"that stupid ear-biting "

so this would be true:

gerbil == "that stupid ear-biting mike tyson"

any answers?