#include <stdio.h>
int main ();
{
int bal = 10000;
int pin, choice deposit, withdraw;
printf("enter your four digit pin: ");
scanf("%d, &pin");
while (pin == 9999)
{
printf("welcome please choose an action: \n");
printf("1 - balance inquiry\n");
printf("2 - withdraw\n");
printf("3 - deposit\n");
printf("4 - exit\n");
scanf("%d", &choice);
if(choice == 1)
}
printf("\n your available balance is: %d", bal);
break:
{
else if(choice == 2)
}
printf("\n enter amount to withdraw: ");
scanf("%d", &withdraw);
while (withdraw <== bal)
{
bal = bal - withdraw;
printf("\n withdraw successful, your new balance is: %d \n", $bal);
break;
}
break;
{
else if(choice == 3)
{
printf("\namount to be deposited: ");
scanf("%d". &deposit);
bal = bal + deposit;
printf("\n your new balance is: %d \n", bal);
break;
}
else if(choice == 4)
{
break:
}
{
}