The LibreBank project is a bank simulator that was made with the objective of practice and learn how to use the C Language.
-
Linux
Make sure that the C compiler (GCC is the recommended) is installed correctly and execute
gcc -o librebank main.c conta/conta.c conversor/conversor.c menu/menu.c programa/programa.c tratamento_de_erro/tratamento_de_erro.c user_inf/user_inf.c utils/utils.c
After that it will be possible to execute the program using
./librebank
. -
Windows
Install a C compiler (Mingw-w64 is the recommended) and execute
gcc -o librebank main.c conta/conta.c conversor/conversor.c menu/menu.c programa/programa.c tratamento_de_erro/tratamento_de_erro.c user_inf/user_inf.c utils/utils.c
After this it will be created a executable in the same folder that the command above was executed, you can execute the program using
.\librebank.exe
.
- Basic functionalities of the bank.
- Show the balance in different currencies.
- Support for multiple accounts.
O projeto LibreBank é um simulador de banco feito com o objetivo de praticar e aprender a utilizar a linguagem de programação C.
-
Linux
Tenha certeza de que o compilador C está instalado corretamente (GCC é o recomendado) e execute
gcc -o librebank main.c conta/conta.c conversor/conversor.c menu/menu.c programa/programa.c tratamento_de_erro/tratamento_de_erro.c user_inf/user_inf.c utils/utils.c
Após isso será possível executar o programa utilizando
./librebank
. -
Windows
Instale um compilador C (mingw-w64 é o recomendado) e execute
gcc -o librebank main.c conta/conta.c conversor/conversor.c menu/menu.c programa/programa.c tratamento_de_erro/tratamento_de_erro.c user_inf/user_inf.c utils/utils.c
Após isso será criado um executável na pasta onde esse comando foi executado, você poderá executar o programa utilizando
.\librebank.exe
.
- Funcionalidades basicas do banco.
- Mostrar saldo em diferentes moedas.
- Suporte a multiplas contas.