Hi there..

I have searched all over the net for this little feature, but cannot find it anywhere.. How does I append a character to a string.. It sounds very simple, but can't find help to do so anywhere..

I tried to use a string to do this this as follows, but it does not do it quite well, and looks very stupid:

char strTMP[1];
char testint2[] = "BLA BLA BLA ";
strTMP[0] = c[i]; // returns a char
strcat(testint2,strTMP);