Question: C Program Create a structure student, to be an element of a linked list, as follows: struct student { char name[20]; struct student *next; };

C Program

Create a structure student, to be an element of a linked list, as follows: struct student { char name[20]; struct student *next; }; write a function: struct student *addStudent(const char name[], struct student *head) which adds a new student at the beginning of the linked list. Hint: use the function strcpy() in to copy the content of a null-terminated array of character into another (http://www.cplusplus.com/reference/cstring/strcpy/)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!