Can you modify and send complete code so that I can enter multiple student's information? With the current code I am only able to enter one student's information. Below is the assignment question and the code.
Given the need to track students in a class as we did in the last snippet.
1. Modify the student node structure below to be self-referencing and change the name of the structure to be student_node.
typedef struct student{
char lname[25];
char fname[25];
float gpa;
int age;
} student;