Problem: Write a program that can read and write an array of students to and from a file. Each student will be of this structure:

struct Student{

int studentId;

char firstName[256];

char lastName[256];

int age;

float gpa;

};