PROGRAMMING:arithmatic expression 2
Develop a c program that will do an arithmetic calculation(+, -, *, /, %). All numbers' data types are integer. The question guarantees that the denominator isnot 0.
### Input Specification:
input an arithmatic expression.
### Output Specification:
output the expression and the answer.
### Sample Input:
```in
455/16
```
### Sample Output:
```out
455 / 16 = 28
```
answer:If there is no answer, please comment
### Input Specification:
input an arithmatic expression.
### Output Specification:
output the expression and the answer.
### Sample Input:
```in
455/16
```
### Sample Output:
```out
455 / 16 = 28
```
answer:If there is no answer, please comment