[Solved]-Q Create Functional Atm Using Code Base Given Example Must Use Routines Provided Code Base Q37252110
Q- Create a functional ATM using the code base given in theexample. You must use the routines provided in the code baseexample.
Failure to follow the directions will result in an ‘F’ (CProgramming Language please )
/* * @desc: Simple ATM machine * @duedate: 23-April-2019 * * * */ #include <stdio.h>#include <time.h>#include <stdlib.h>#include <string.h>char menu();/* Verifies the Pin Entered match the PIN on record */int validatePin(int);/* Verifies the funds requested are available to perfrom the transaction */int verify(double, double);/* Each of the following routines should update a specific balance * after the transaction has been completed */double chk_deposit();double chk_withdraw();double sav_deposit();double sav_withdraw();double transfer();int main(){ srand(time(NULL)); int pin = rand() % 9999; printf(“PIN: %dn”, pin);}
Expert Answer
Answer to Q- Create a functional ATM using the code base given in the example. You must use the routines provided in the code base… . . .
OR

