Which of the following would correctly read an entire line from an input file stream named fin into a string variable named line.
a. getline(fin, line);
b. fin.getline(line);
c. fin.getline(line,'\n\');
d. fin.getline(line,80);