What would be the pusedo code for a program that would write data to file?
Would it look something like this?
Declarations of type of data you want to enter.
Open the file, you want to write to.
Check if the file opened.
If file did not open try again.
Write data to the file.
Ask if satisfied.
If not keep writing.
If satisfied close file.
M I missing something?