I'm learning to program in Arduino and, as far as I understand it, it uses the C language (please correct me if I'm wrong).
I'm a senior in JavaScript and PHP, and now I'm having hard time with simple stuff like string handling.
If in JavaScript I have
var c = 33;
var myString = "hello" + c;
alert(myString); //---> hello33
how does it work in C/Arduino?