Are you missing something in here?:
fflush is not defined for input streams:Code:printf ("\nEnter account number: ", x + 1);
...
printf ("Enter balance: ", x + 1);
Code:fflush(stdin); /* Remove extraneous characters */
You are doing nothing to protect against a user entering more than 25 users. If they type in 50 for the answer to the "Enter the number of clients" question what happens?
Code:/* Declare variables */
struct info client[25];
...
printf ("Enter number of clients to be used: ");
scanf ("%i", &numClient);
/* Prompt for user to enter each clients info */
for (x = 0; x < numClient; x++)
{
