User profile: tfityo

User info
User name:tfityo
History
Joined:
Number of posts:117
Latest posts:

Having trouble incorporating a function into my main function
Modify [code]char getNewGuess(string prevGuesses)[/code] to [code]char getNewGuess(string& prevGuess...

vector> values
Does [code]vc[i][/code] exist? If not, you should create Client, fill all its fiulds and push to th...

Input bug
You are using char variable, it is just for one character. Try to use [code]int[/code] or [code]stri...

Combination list code
Variable [code]count1[/code] exceeds 9 quite quick. I don't know how your compiler aligns variables...

Problems With Void Functions
Modify list of parameters to [code]void calcSumAndDiff(int n1, int n2, int& sum, int& diff)[/code] ...