123456789
int count; vector<char> myVect(10); //Lets assume that the numbers 1-10 are stored in here; for(count=0;count<10;count++) { if(myVect[count]==3) { ... //What code would go here to replace it with a "T"; } }
myVect[count] = 'T' ;