Ask Business Management Expert

This is some code I have been working on. It is a menu with an option to input employee information and a table to view it in. The code works for the most part - except after you have filled the maximum number of employees and attempt to insert another one and the correct error message appears. Then, when the option is selected to display the employee's information, it will only correctly show the last employee entered and the rest will all be 0s. I haven't the foggiest where the issue is. Any hint would be appreciated. I am not asking for the answer I'm asking to be pointed to the section of the code that is causing this extremely specific issue. To narrow it down.

#define _CRT_SECURE_NO_WARNINGS

#define SIZE 2

#include 

// Define Number of Employees "SIZE" to be 2

// Declare Struct Employee

struct Employee {

int id, age;

double salary;

};

/* main program */

int main(void) {

int option = 0;

// Declare a struct Employee array "emp" with SIZE elements

// and initialize all elements to zero

struct Employee emp[SIZE] = { { 0 } };

int counter = 0;

int employeesNumber = 0;

printf("---=== EMPLOYEE DATA ===---nn");

do {

// Print the option list

printf("1. Display Employee Informationn");

printf("2. Add Employeen");

printf("0. Exitnn");

printf("Please select from the above options: ");

// Capture input to option variable

scanf("%d", &option);

printf("n");

switch (option) {

case 0: // Exit the program

break;

case 1: // Display Employee Data

// @IN-LAB

printf("EMP ID EMP AGE EMP SALARYn");

printf("====== ======= ==========n");

// Use "%6d%9d%11.2lf" formatting in a

// printf statement to display

// employee id, age and salary of

// all employees using a loop construct

if (emp[0].id > 0) {

for (counter = 0; counter < SIZE; counter++)

printf("%6d%9d%11.2lfn", emp[counter].id, emp[counter].age, emp[counter].salary);

printf("n");

}

// The loop construct will be run for SIZE times

// and will only display Employee data

// where the EmployeeID is > 0

break;

case 2: // Adding Employee

// @IN-LAB

printf("Adding Employeen");

printf("=============== ");

// Check for limits on the array and add employee

// data accordingly.

if (employeesNumber < SIZE) {

printf("nEnter Employee ID: ");

scanf("%d", &emp[counter].id);

printf("Enter Employee Age: ");

scanf("%d", &emp[counter].age);

printf("Enter Employee Salary: ");

scanf("%lf", &emp[counter].salary);

printf("n");

employeesNumber++;

}

else {

printf("ERROR!!! MAXIMUM NUMBER OF EMPLOYEES REACHEDnn");

}

printf("n");

break;

default:

printf("ERROR: Incorrect Option: Try Againnn");

}

} while (option != 0);

printf("Exiting Employee Data Program. Good Bye!!!");

return 0;

}

Business Management, Management Studies

  • Category:- Business Management
  • Reference No.:- M93127898
  • Price:- $10

Priced at Now at $10, Verified Solution

Have any Question?


Related Questions in Business Management

Name a company that addressed a recent ethical problem in a

Name a company that addressed a recent ethical problem in a positive way. Also, explain how or if this positively affects us as a community?

When it is appropriate to use the trade-off process what

When it is appropriate to use the trade-off process. What conditions apply, and the technical evaluation criteria that might be used?

Need help with a essay with the following phrase for

Need help with a essay with the following phrase for analyzing : " Capitalism is at the heart of how people and organisations are managed in contemporary society" May i ask for a better explanation of the question? Also ...

How could these three tenets of the auburn creed be used to

How could these three tenets of the Auburn Creed be used to motivate others: "I believe that this is a practical word and that I can count only on what I earn. Therefore, I believe in work, hard work." "I believe in educ ...

How can these two tenets of the auburn creed by used in

How can these two tenets of the Auburn Creed by used in addressing teamwork issues: "I believe in honesty and truthfulness, without which I cannot win the respect and confidence of my fellow men." "I believe in the human ...

Discuss the advantages of having and interacting in a

Discuss the advantages of having and interacting in a diverse workplace. Consider the wide range of ideas and perspectives that a range of team members bring to a team, that are of differing ages, ethnic backgrounds and ...

Parmigiano-reggiano global recognition of geographical

Parmigiano-Reggiano: Global Recognition of Geographical Indications What historical factors have helped support the consortium's claims for the geographic specificity of Parmigiano-Reggiano and Parmesan? What are the eco ...

Communication planthis communication plan will be a roadmap

Communication Plan This communication plan will be a roadmap on how the new division will best be able to communicate with Biotech's corporate headquarters, suppliers, other divisions, and internally. This should lay out ...

Discuss strategies to obtain feedback from a customer and

Discuss strategies to obtain feedback from a customer and clients when working in sales.

Describe different networking methods and the advantages

Describe different networking methods and the advantages and disadvantages of them?

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As