Exploiting this code in order to change grade into an A+
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <string.h> /* I obtained access to the professor’s grade management program. Can I change my grade to an ‘A’ and also get access to the shell? */ typedef struct Student_{ char name[40]; char passcode[4]; int student_number; char grade[4]; }Student; void menu(Student *student); void input(Student *student); void print_info(Student *student); […]