This loop:
char c;
while (c = ())
{
cout << c << endl;
}
a) Prints characters until the end of the file
b) Prints characters until a null character is encountered
c) Does not compile due to syntax error
d) None of the above