nOpen a file by
indicating the file name
nIf the file
is in the same directory as the program (current directory)
nMyInFile.open(“MyInData.txt”)
nMyOutFile.open(“MyOutData.txt”);
nIf the file
is in different directory, should put the full path
nMyInFile.open(“e:\\com1100\\data\\MyInData.txt”);
nMyOutFile.open(“e:\\com1100\\data\\MyOutData.txt”);
n