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

https://github.com/msio808/basic-calc

Simple Calculator Using Function Pointers
https://github.com/msio808/basic-calc

basic basic-cal calcula cprogramming function-po function-pointer

Last synced: 3 months ago
JSON representation

Simple Calculator Using Function Pointers

Awesome Lists containing this project

README

        

# Basic Calculator in C.
> >
> ## How it works?
> * **The Program performs basic operations **[➕, ➖, ✖️, ➗, ∜, ∛...]** using function pointers.**
>
> ## Usage :
> * **First select an option for the operation.**
> * **Then Enter two number to perform the operation.**
>
> ## To run the code
> * ### `gcc main.c -o main -lm -Wall -Werror -Wextra`
> * **Then run : ```./main``` for unix or ```.\main.exe``` for windows.**
> * **You can also build/run it with ```CMake```**
> .