int choiceOne = 0;
choiceOne = _getch();
cout << choiceOne;
_getch();
system("CLS");
I would like choiceOne to = what the user enters, but it outputs (48+ The user input) So if I enter 0 it will output 48, if I enter 5 it will output 53. I'm not sure where the 48 is coming from.
If more code is necessary I can post it.