Is there something special about the variable type 'char' that I am ignorant of?
Visual studio has issues with the pointers in
it also has issues with the != operands in my while loop.
Thanks in advance.
char servCode;
cout << "Enter service code (r or p): " << endl;
cin >> servCode;
cout >> servCode;
while(servCode != "r" && servCode != "R")
{
}
Visual studio has issues with the pointers in
cout >> servCode;
it also has issues with the != operands in my while loop.
Thanks in advance.