answersLogoWhite

0

hai how r u?

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

How do you read and write data to serial and sequential file using basic programming language?

you do


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


How can you export data from MySQL to PDF using PHP?

If you know FPDF or simlar library which helps to make a PDF file, using PHP,you will be able to write to a PDF file out of data read from mysql tables.


How do you store data in c?

Write your data to a data file.


How do you read hyper terminal data to a file?

I have the same problem............ I want to read and write file but using Xmodem..... Please help me out as soon as possible


How you can delete the data in the file by opening it in the C programming in read or write mode?

To delete all the existing data in a file, simply open it in write mode. If you open the file in append mode, you need to overwrite the existing data to delete part or all of that data.


What opening a file creates a file on a disk and allows the program to write data to it?

Opening a file...for writing!


Is deleted Firefox private data recoverable using a file recovery program?

Your Private Data is recoverable using a File Recovery Program...such as Pixo_Rescue.


Is write a FORTRAN command?

Yes. The FORTRAN write command output's data to a file.


How do you read and write video file in java?

you can use inputstream for reading the file java.io.fileinputstream and write the file using outputstream..


What are the advantages of traditional file processing and database approach?

An alternative to using a database to store data is to use what are known as flat files. These are basically text files that are stored on your server that you can use to store your data, change, manipulate and generally use how you want. Although I'd recommend you use a database, you can use PHP's file processing system. There are 3 steps to writing data to a file: # Open the file (create if doesn't already exist) # Write data to the file # Close the file There are also 3 steps to reading data in a file: # Open the file (if cannot be opened, generate an errror) # Read the data # Close the file


How you can delete the data in the file when you open the file in read or write mode in C programming?

When you open a file in write mode, eg. fp=fopen("filename.txt","w"); the content of the file is deleted.