Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rory660/simplecalc

Little calculator app in C
https://github.com/rory660/simplecalc

c calculator

Last synced: about 2 months ago
JSON representation

Little calculator app in C

Awesome Lists containing this project

README

        

# SimpleCalc
Little calculator app in C.

Takes a mathematical expression as an argument and evaluates it, printing the result to the console window.

Can handle addition, subtraction, multiplication and division operators as well as brackets.

### Example

```
> simplecalc 2+(2*6)/3
6
```