Hi, I need to store the value of an int variable as an element in a string. i.e.
1 2 3 4
string S = "abcde";
int count;
count = 15; //i.e count gets assigned some value during the course of the program
S[3] = count; //<= problem! I want to store count as an i'th element of the string but the problem is that count is an int and I don't know its value so can't use '15'