tusharhero / c-calc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README for c-calc

C-calc

A Calculator written in C.

It will only work for basic arithmetic operators like, +, - , *, /, ^. And it also supports ( and ) (parenthesis) but no order of precedence support other than that.

Sample session

./a.out
C-calc  Copyright (C) 2023  Tushar Maharana
This program comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions of the GNU General Public License version 3.

Hit enter twice to exit.

> 1+2*(3+4)/(1-3)
-10.500000
> 1+23*3-27
45.000000
> ⏎                                                                                                                                                                                           

About

License:GNU General Public License v3.0


Languages

Language:C 98.1%Language:Makefile 1.9%