I'm not asking anyone to do my homework but I am desperate to get help. I need a huge boost in the right direction. My program is to calculate the value of an expression involving arithmetic operators. The expression should be evaluated based on operator precedence. The program should prompt the user to input the expression and should indicate the end of the expression by inputting a character E. The expression should have only numeric values and operators to add, subtract, multiply, and divide.

-The program should prompt the user to input only integer values
-the program should be written for integer values in the expression
-Arrays should be used to store the input values of the user
-Output of the program should be an integer value
-Functions can be used if necessary
here is an example that a user might enter
"34*2-8+6/3E"
the program should display the correct answer and the numbers stored as integers and the operators stored as char. Please someone help me out anyway you can. Thank you.