This is an open sorce command line interface that contains various mathematical functions to make mathematics fun.
This cli program can do:
- Simple Mathematics like simplification
- Solve Quadratic Equations
- Plot Graphs
- Determine domain and range
- Fork the repo
- Clone your fork locally
git clone https://github.com/TheShiveshNetwork/MathC.git
- Create a new branch
git checkout -b feature/<your-feature-name>
- Push all the local code to your branch
git add .
git commit -m "feature/<your-feature-name>"
git push
- Create a Pull Request
Your Pull Request will be reviewed and if found worthy, it will be merged.
- Compile the code
gcc -o main main.c -lm
Note to add -lm at the end, because we are using math library functions. 2. Run the output file
./main