Skip to content

bamioezequiel/c_projecto-sistema-bancario

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Project-Sistema-Bancario

Simulador de Sistema Bancario, hecho para la practica de Estructuras, Punteros, Archivos, LinkedList en C.

MENU 🚀

menu-principal

menu-clientes menu-cuentas

FUNCIONALIDAD DEL MENU 📋

**Registro** Cada dato que se agregue deberá ser confirmado y guardado en el lista.
**Consulta** Consultará información de Clientes por nombre, y la información de Cuentas por Id
**Regresar al menu principal** Muestra el menú principal.

ESTRUCTURAS 🔧

#define ARRAY_SIZE 100
typedef struct
{
  int idCliente;
  char nombres[ARRAY_SIZE];
  char ciudad[ARRAY_SIZE];
  char direccion[ARRAY_SIZE];
  int edad;
  int telefono;

}eCliente;
typedef struct
{
  int idCuenta;
  int idCliente;
  int nip;
  float saldo;
}eCuentas;
typedef struct
{
  int idCuenta;
  int idCliente;
  int idTipoMov;
  float monto;
  char fecha[ARRAY_SIZE];
}eMovimientos;

Construido con 🛠️

C Eclipse

  • Uso de: Funciones, Arreglos, Estructuras, Archivos, LinkedList.

ACTUALIZACIONES 📄

23/07/2021 - Proyecto cargado.

Autor ✒️


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages