String concatenation for Serial.print

Your combining them has more overhead than just printing them one after another. All print has to do is dump the data into a buffer. Where it is concatenated like you want. So you're basically making it do that twice. Now which is really more efficient?