12.1: File Operations: 11312

Question

Given an  fstream object named  todo , associate it with a file named  todolist by opening the file for appending.

Solution
todo.open("todolist");

1 comment: