This program you can say I've done the fist two,but the last three I couldn't do
If you can help with I'm using TASM
1. Create file "data.txt" in your working directory.
The file should have 10 numbers
each between 0 and 100 and separated by a space.
2. Write code to do the following:
a. search for the file; exit with error message if not found.
b. open the file, read the contents and close the file.
c. display error and exit if the contents are not numbers.
d. find and display the average of the numbers in the file.
e. handle a file with more or less than 10 entries eg. 9, 11, 1000.
3. Write comments in your code to describe what you are doing.
You can use the comments found in the assembly listing but what
I want is your description of the code sections,
not just each line.