// This program scans in a bank account number and the corresponding account // balance. // It prints out a message to indicate whether the account is in good standing, // empty or overdrawn. // Additionally, it also warns or congratulates the user if the their balance // is below $100 or above $1000 respectively. // // Unfortunately, this code contains a number of errors. Please help fix it! #include struct Account { int account_number; double balance; }; int main(void) { struct Account account; printf("Enter account number: "); scanf("%d", &account->account_number); printf("Enter account balance: "); scanf("%d", &account.balance); if (account.balance > 0) { printf("Account %d is in good standing.\n", account.account_number); } else if (account.balance = 0) { printf("Account %d is empty.\n", account.account_number); } else if { printf("Account %d is overdrawn.\n", account.account_number); } if (account.balance < 100) { printf("Warning: Your account balance is below $100.\n"); } else { printf("Congratulations! Your account balance is above $1000.\n"); } return 0; }