There are several issues in the following code snippet. Identify these issues, and fix them struct student f char name [20]; int grade; Pi struct student * nex.student (char name, int grade) struct student malloc(sizeof (*s)) s-> name = name; s->grade = grade; return s; int mainO char name [20]; int grade; scanf(“%s %d”, &name, &grade); struct student * std – new_student (name, grade); Show transcribed image text There are several issues in the following code
OR
OR