This has got to be the easiest thing to do in C++.
..and I know it's been asked many many times before, however please keep in mind that this is part of an Arduino project and memory saving is a major issue as I've only got 32256 byte maximum to play with.
I need to convert an integer to a string.
int GSM_BAUD_RATE;
GSM_BAUD_RATE = 4800;
Serial.println("GSM Shield running at " + GSM_BAUD_RATE + " baud rate.");
Obviously the last line is going to give me an error.
Thanks in advance.