I am trying to display the output hello 3. How can i achieve this with Serial.print() method defined in SoftwareSerial.h library. I have the following code.
#include <SoftwareSerial.h>
int a = 3;
void setup(){
Serial.begin(9600);
Serial.print("hello"+a);
}
void loop(){
}