Assume that the file does not exist. What happens?
ofstream out("");
out << "Peter" << " " << 20 << endl;
out << "John" << " " << 50 << endl;
a) The file "Peter 20" is created
b) The file "John 50" is created
c) The program crashes with a file not found error
d) Nothing