Global searching is not enabled.
Skip to main content
If you continue browsing this website, you agree to our policies:
x
Assignment

C Assignment : Structures

Completion requirements
Opened: Thursday, 27 July 2023, 4:30 AM
Due: Thursday, 3 August 2023, 4:30 AM


Question 1 : Write a program to implement an inventory system. Store the item number, name, rate and quantity on hand in a structure. Accept the details for five items into a structure array and display the item name and its total price. At the end, display the grand total value of the inventory.



Question 2 : Write a program to store the names and scores of 5 students in a structure array. Sort the structure array in descending order of scores. Display the top 3 scores.



Question 3 : Write a program to store the names and scores of 3 employees in an array of structure. Output the name of employee with highest salary.



Question 4: Write a program as explained below.

Create a program which stores the following details about the students in a class.

Get the number of students in the class first then get each student details as given below:

(i)Name (Read using scanf)

(ii)Subject1 marks (Read using scanf)

(iii)Subject2 marks (Read using scanf)

(iv)Subject3 marks (Read using scanf)

(v)Total (Sum of marks of subject 1, 2 and 3)

(vi)Average (Average of marks)

You have to define a structure to store those fields.

Note that name and marks you have to enter. 

Total and average you will have to calculate.

Have an option to print the individual structures.

Use functions to make code modular. 

Do not write entire code in main() function.

Try to make number of subjects flexible.