Write a program that demonstrates the importance of operator
precedence. Your program will take in three integers from a user
(using scanf) and place them in the variables a, b, and c. Then
print the result of a C expression that you design, using those three numbers, that
has no parentheses. Finally, show a different result from the same
expression with one added pair of parentheses.
Example output (with fake numbers):
strauss% a.out
enter a, b, and c: 12 34 5
The result of <print out your equation here> is: 51
The result of <print out your equation with parens here> is: 15