Reference no: EM132494152
Instruction: Use pointers for this lab. No arrays, no structures.
For example, if you need an array of floats to hold the scores, do not use float score[15]. Rather use float *score, then use dynamic memory allocation to hold required memory. You must use memory optimally, that is if you have only 6 scores, you must point to a memory chunk of sizeof(float)*6 bytes. Similarly, to hold a name, instead of doing it with 2D char arrays, use 2D pointers (char firstName[15][20] → char **firstName).
Write menu based program to maintain student records. Your program should take the following inputs: 1. Student first name (max. 20 characters) 2. Student last name, (max. 20 characters) 3. Student scores (float/double), e.g. 85.4 Your program should be able to take records of a minimum of 5 students. After taking the records, you should provide 8 functionalities to the user.
1. Print records - prints records of all students
2. Add a new record - take a new record from the user for a new student. Be careful, you may need to allocate more memory using dynamic memory allocation.
3. Delete record(s) - to delete a record, ask for the last name of the student from the user. If there are multiple students with same last name, you must delete all of their records. You must free up the memory holding these records.
4. Search by last name - prints record of the student with a given last name. If there are multiple students with the same last name, print records for all of them.
5. Sort by score - sort the records of students according to their scores, and then print the sorted records. 6. Sort by last name - sort the records of students according to their names alphabetically, and then print the sorted records.
|
What is the cost of goods sold for julia and company
: What is the cost of goods sold for Julia & Company assuming it uses LIFO? (Do not round your intermediate calculations. Round your answer to the nearest)
|
|
How much would save by transferring the credit card debt
: Determine How much would his monthly repayments to the credit card company be if he intended to pay out the debt over five years?
|
|
What is the error in total net income
: A company's financial statement, What is the error in total net income for the combined three-year period resulting from the inventory errors?
|
|
What is the difference between emulation
: 1. What Is The Difference Between Emulation, Native Virtualization, And Para Virtualization?
|
|
Take a new record from the user for a new student
: Add a new record - take a new record from the user for a new student. Be careful, you may need to allocate more memory using dynamic memory allocation.
|
|
Draw the heap that results from inserting
: Draw the heap that results from inserting 10, 12, 1, 14, 3, 17, 7, 2, 5, 8, 6 and 70 (in that order) into an initially empty binary max heap.
|
|
Create two variables ttlproblems
: For this project, you will make a program that will test the user's proficiency at solving different types of math problems. The program will be menu driven.
|
|
Can anyone explain me the topic of linked lists
: Can anyone explain me the topic of Linked Lists? I am studying data structures using Java and I need help wrapping myself around this concept.
|
|
Research on the topic of data analytics and visualization
: Project assignment is to have you do more research on the topic of Data Analytics and Visualization. In this project you will need to do some research.
|