Create the pseudocode that will demonstrate how an application will write
your name and surname to a text file called “students.dat”.
Start
String name
String surname
String FILENAME="students.dat"
Get name
Get surname
Open FILENAME
Write name to the file
Write surname to the file
Close the file
Stop
Comments
Leave a comment