The file contains lines of text that look like this:
Smith 94
Jones 75
Each line of text contains the student's name (a single word) and an integer score. What is the legal way of reading one student's information, given the following code?
string name;
int score;
ifstream in("");
a) in >> name >> score;
b) getline(in, name); in >> score;
c) in >> name; getline(in, score);
d) in >> name; in >> score;