Having trouble incorporating a function into my main functionModify [code]char getNewGuess(string prevGuesses)[/code] to [code]char getNewGuess(string& prevGuess...
vector> valuesDoes [code]vc[i][/code] exist? If not, you should create Client, fill all its fiulds and push to th...
Input bugYou are using char variable, it is just for one character. Try to use [code]int[/code] or [code]stri...
Combination list codeVariable [code]count1[/code] exceeds 9 quite quick. I don't know how your compiler aligns variables...
Problems With Void FunctionsModify list of parameters to [code]void calcSumAndDiff(int n1, int n2, int& sum, int& diff)[/code] ...