I was wondering how should I consider the operators + - * /
are they characters?
I am writing a program in which a user input an operator (either + - * /) and then a number and he gets the updated total based on the operator and number. If user type X the program exit. I must use while do loop
I am able to get the program started, but I dont know how to handle the operators...are they char?
I am handling them as string...but I am getting an infinite loop after the first input...