项目作者: somrajchowdhury

项目描述 :
This repository contains C code for designing a simple Bank ATM system.
高级语言: C
项目地址: git://github.com/somrajchowdhury/Bank-ATM-System-in-C.git
创建时间: 2020-05-21T03:34:10Z
项目社区:https://github.com/somrajchowdhury/Bank-ATM-System-in-C

开源协议:

下载


Bank ATM System in C

This repository contains the code for ATM implementation in C

Features:

  1. Implemented queues using linked lists to hold the history of latest 10 transactions.
  2. Randomly generating PIN numbers for ATM access.
  3. Using File I/O to store PIN numbers.
  4. Search for PIN in the file to validate PIN entered by User.

Concepts used:

  • Dynamic Memory Allocation
  • Queue data structure
  • File operations
  • Structures
  • Pointers
  • Random Number Generation