Given an fstream object named todo, associate it with a file named todolist by opening the file for appending.
LANGUAGE: C++
CHALLENGE:
Given an fstream object named todo, associate it with a file named todolist by opening the file for appending.
SOLUTION:
todo.open("todolist");