You are designing a C program to handle a database of employees in a company. Each employee has attributes like name, ID, and salary. What would be an efficient way to manage this data?

  • Array of Structures
  • Linked List of Structures
  • Queue
  • Stack
An array of structures would be an efficient way to manage data about employees in a company. This data structure allows for easy access and manipulation of employee records, making it suitable for tasks like searching for specific employees or sorting employees by various attributes.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *