Using GDB, I find I get a segmentation fault when I attempt this operation:
strcat(string,¤tChar);
Given that string is initializ
I think the simplest method (not efficient) would be sprintf
sprintf
sprintf(str, "%s%c", str, chr);