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
- Host: GitHub
- URL: https://github.com/msio808/basic-calc
- Owner: msio808
- License: mit
- Created: 2023-08-19T08:38:41.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-28T19:12:11.000Z (over 1 year ago)
- Last Synced: 2025-02-04T13:41:12.395Z (5 months ago)
- Topics: basic, basic-cal, calcula, cprogramming, function-po, function-pointer
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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```**
> .