Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rory660/simplecalc
- Owner: rory660
- Created: 2018-05-12T14:31:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-13T16:21:38.000Z (over 6 years ago)
- Last Synced: 2023-10-27T12:35:07.020Z (about 1 year ago)
- Topics: c, calculator
- Language: C
- Size: 45.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```