File Handling in C
#1

File Handling in C

[attachment=16465]

We frequently use files for storing information which can be processed by our programs. In order to store information permanently and retrieve it we need to use files.

Files are not only used for data. Our programs are also stored in files.

The editor which you use to enter your program and save it, simply manipulates files for you.


File I/O

The Standard I/O Library provides similar routines for file I/O to those used for standard I/O.

The routine getc(fp) is similar to getchar()
and putc(c,fp) is similar to putchar©.

Thus the statement

c = getc(fp);

reads the next character from the file referenced by fp and the statement

putc(c,fp);

writes the character c into file referenced by fp.

Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: data structure file handling, ppt on file handling mode in c, file handling in c pdf download, file handling in c pdf, file handling in c seminar, data file handling in c ppt, file handling in c ppt,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  Cryptographic Security for a High-Performance Distributed File System seminar paper 0 908 12-03-2012, 04:07 PM
Last Post: seminar paper
  File Permissions seminar paper 0 731 06-03-2012, 03:53 PM
Last Post: seminar paper
  Online crime file management seminar addict 1 3,817 26-01-2012, 09:57 AM
Last Post: seminar addict
  HADOOP DISTRIBUTED FILE SYSTEM seminar addict 0 1,170 20-01-2012, 12:12 PM
Last Post: seminar addict
  Material Handling smart paper boy 1 2,159 09-01-2012, 04:35 PM
Last Post: jonssmith2

Forum Jump: