Objective
Write a program that evaluates a compact arithmetic expression.
Steps
$ ./expr_tree_eval '8+2*5'
18\n
$ ./expr_tree_eval '(8+2)*5'
50\n
Expected files
Allowed functions

Objective
Write a program that evaluates a compact arithmetic expression.
Steps
$ ./expr_tree_eval '8+2*5'
18\n
$ ./expr_tree_eval '(8+2)*5'
50\n
Expected files
Allowed functions

Tests
Run the tests to grade your code