C - Reading/Writing 2D Arrays - Read in a list of student names and grades. Each student name in C is an array of characters, so if you need more than one student name, you will have a 2D array.
ex. char names[5][20]; //this allows you to have an array of 5 student names
//each name can be 19 characters long, plus you need 1 character for the null character at the end