Passing char arrays to a function - best practice

I need to concatenate the two strings together because the message is going out to Twitter. In the Tweet I want to have the message and a timestamp. If twitter sees two identical tweets one after the other it will just drop the 2nd one. The timestamp prevents this. I know I could just put millis() or something instead of the time, but that wouldn't change the need to concatenate two strings.