/Simple-Bank

A simple bank system using C, as a beginner project into C.

Primary LanguageMakefileMIT LicenseMIT

Simple-Bank

GitHub repo size GitHub GitHub Repo stars

A simple bank system using C as a beginner project into C.

Added builds for ease! Using GitHub Actions - cmake.yml!

image

Builds

Build from source:

You can follow the instructions if you are unsure how to build from source. Simply go to the releases, I posted quite a bit of instructions there.

Otherwise, if you know have CMake installed, you can follow the instructions below, make sure it is 3.25 or higher, and you have a C compiler installed (C17 standard).

Windows:

git clone ...
cd Simple-Bank
mkdir build
cd build
cmake ..
cmake --build .
.\Debug\Bank_Simple_C.exe

Linux:

git clone ...
cd Simple-Bank
mkdir build
cd build
cmake ..
cmake --build .
chmod +x Bank_Simple_C
./Bank_Simple_C

macOS:

git clone ...
cd Simple-Bank
mkdir build
cd build
cmake ..
cmake --build .
chmod +x Bank_Simple_C
./Bank_Simple_C

Binaries

Windows:

Bank_Simple_C.exe

Linux:

Bank_Simple_C

macOS:

Bank_Simple_C