Exactly that. For example in the reference page explain that you can't concatenate in the print comand and stuff like that.
And if you want to print
Serial.print("I have "),apples, (" apples in the kitchen");
is
Serial.print ("I have ");
Serial.print(apples);
Serial.print(" apples in the kitchen");