ATM transaction in C program
#include <stdio.h> unsigned long amount=1000, deposit, withdraw; int choice, pin, k; char transaction ='y'; main() { while (pin != 1234) { printf("ENTER YOUR SECRET PIN NUMBER:"); scanf("%d", &pin); if (pin …
ATM transaction in C program Read More