This is a c programming problem i will give a thumbs up if answered correctly thank you!

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

This is a c programming problem i will give a thumbs up if answered correctly thank you!

Post by answerhappygod »

This is a c programming problem i will give a thumbs up if
answered correctly thank you!
This Is A C Programming Problem I Will Give A Thumbs Up If Answered Correctly Thank You 1
This Is A C Programming Problem I Will Give A Thumbs Up If Answered Correctly Thank You 1 (31.16 KiB) Viewed 51 times
This Is A C Programming Problem I Will Give A Thumbs Up If Answered Correctly Thank You 2
This Is A C Programming Problem I Will Give A Thumbs Up If Answered Correctly Thank You 2 (5.07 KiB) Viewed 51 times
4. Suppose you have a C sorted linked list to keep track of students at a university. Each node in the list is a structure of the form: struct student { char *first_name; char last_name; unsigned int a number; float gpa; struct student *next; The list is sorted in alphabetical order by last_name and then first_name. Assume that last_name and first_name each point to a dynamically-allocated, efficiently-sized string. Your task on the following pages is to write a C function that determines if a student with a specified first name and last_name is in the list. If the student exists, the function returns a pointer to that struct student. Otherwise, the function returns a NULL pointer. Be sure to consider the case where the list is empty. The function prototype is as follows: struct student find_student (struct student *list, char *first_name, char *last_name);
a. [15 pts] Write detailed pseudocode for the find_student function only (do not write pseudocode for an entire C program).
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply