Posts

Showing posts from February, 2022

BANK Program

 #include<stdio.h> #include<conio.h> #include<process.h> #define SIZE 10 int menu() {     int choice;     clrscr();     printf("*****MENU*****\n");     printf("1.Create Account\n");     printf("2.View Balance\n");     printf("3.Withdraw\n");     printf("4.Deposit\n");     printf("5.Exit\n");     printf("Input Your Choice");     scanf("%d",&choice);     return choice; } ////////////////////////////////////////////////////////////////// struct Account {     int accno;     char name[30];     int amount; }a[SIZE]; //////////////////////////////////////////////////////////////// void main() {    int i,top=-1,ano,amt,flag;    while(1)    {       switch(menu())       {    ...