Create the pseudocode that will demonstrate how an application will write your name and surname to a text file called “students.dat”.
Begin
String name
String surname
Read name
Read surname
Open the file "students.dat" in "write" mode
WriteLine name+","+ surname
Close the file
End
Comments
Leave a comment