Bank Atm project using C Programming
#include<stdio.h> #include<stdlib.h> void deposite(); void withdrawl(); void balancecheck(); void transfer(); int tac=5000,inac,tamt; int *rtac; float mb=20000; int depo; int wdrawl; char ch; int main() { printf("$*****----Welcome to our bank----*****$\n"); int choice; up: up1: printf("Press 1 for deposite\n"); printf("Press 2 for withdrawl\n"); printf("Press 3 for balance check\n"); printf("Press 4 for balance transfer\n"); printf("Press 5 for log out\n"); scanf("%d",&choice); switch(choice) { case 1: deposite(); up2: printf("\nPress y for continue\nPress n for exit"); ch=getch(); system("cls"); if(ch=='y' || ch=='Y') { goto up1; } else if(ch=='n' ||ch=='N') { printf("Thank you\n\n"); exit(0); } else { printf("Press y for continue & n for exit"); got...