String Concatenation ? [solved]

;D
I've found...

strcat(str1,str2);// append str2 to str1
// if str2 is an integer, have to convert it to string before append.
itoa(int2, str2, 10); // 10 is the radix

hope this'll help. and i'm not saying wrongs things
it's work for me::slight_smile:

mrbbp