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
Get step-by-step solutions from verified subject matter experts
