This loop
string str;
while (getline(in, str))
{
cout << str << endl;
}
a) Reads lines until the end of the file
b) Reads characters until the end of the file
c) Prints each line of text in the file
d) None of the above