answersLogoWhite

0


Best Answer

I have the same problem............

I want to read and write file but using Xmodem.....

Please help me out as soon as possible

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you read hyper terminal data to a file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is meant by read and write txt in file handling?

read: moving data from file to memory write: moving data from memory to file


When reading data in a data file the data will be read?

in order it was written.


What is function of End-of-file?

It means 'no more data to read in this file'.


When you copy data from a file on a storage device into RAM you?

read to the file


Why would you need to convert a string to a numeric data type?

For example, to interpret user input; to read data from a text file or from some other program that produces the data as a string.For example, to interpret user input; to read data from a text file or from some other program that produces the data as a string.For example, to interpret user input; to read data from a text file or from some other program that produces the data as a string.For example, to interpret user input; to read data from a text file or from some other program that produces the data as a string.


Traditional file environment?

Traditional file environment is not well suited to save data in them. They make it difficult to read the data as they are more unstructed.


How do you open a data file?

You can use fstream header file to read and write in files. It has two main components ifstream: stream which you can use to read data, and ofstream which allows you to save in files. Use something like this:#include#includeusing std::ifstream;using std::cout;using std::endl;int main(){char fileName[] = "myfile.txt";//file to read fromifstream inData;//stream to read from myfile.txtint data = 0;//to read one number of type int (we assume that the file contains it)inData.open(fileName);//connect the stream to the fileif (inData.fail())//if coult not open the file, program will be closed{cout data;//read one number from the file and save it in data of type intcout


What are read only files?

Files that can only be read (data can be retirieved) are called read-only files. You cannot write any data into a read-only file (you cannot edit it).


What is the difference between File Reader and FileInputStream in java?

FileReader used to read the character stream in the file.i.e a file that contanis only the character means FileReader is the choice to read the file.On the other hand if the file contains image,byte like raw data format means FileInputStream is the choice to read the data in the file,.


Streaming Data?

Streaming Data is any type of data that can be read without having to open and close the input like a regular data file.


What is the term used to describe a file that data is read from?

It is known as an open file. Files can be opened for reading or writing, or both.


How does one read data from a text file and create an adjacency matrix with the data in matlab?

You can read data from a text file in a few different ways, but generally you use the "textread" function. The syntax is: C = textread('file','format') where C will be your new text matrix, file is your text file within your matlab directory, and format will depend on the type of data it is (see related link for more). Can't help with the adjacency matrix, sorry.