Stream input and output functions, C/C++ Programming

Assignment Help:

  Within C we access external devices by means of a pointer i.e. address. The address could point to any memory mapped device i.e. Ram, Rom, Duart, Disk drives etc. Therefore there is no difference between accessing area in Ram or a file on a disk. However accessing devices usually require an initialization program, within C this is achieved by the fopen/fclose commands. The syntax of the fopen command is
 
    void main()
    {    
    FILE *name;
    name = fopen(device or file name , access);
 
    if (name == NULL ) 
    {
      printf("cannot open the file \n\r");
      exit(1);
    }
    }
 
The device or file name is usually machine dependent i.e.
 
    VMS    "dsk$usr:[en_staff.entjmc]file.ext"
    Unix    "dsk$usr:en_staff\entjmc\file.ext"
    Mac    "dskname:folder:folder:file";
    PC    "drive name:\directory\file.ext";
 
By default the current disk and directory are taken if not specified. The access describes the write/read privilege and type of data stored i.e. text or binary. Text is used to describe sequential data while binary is standard random access data
 
    "r"    Text file read only
    "w"    Create a new Text file write only
    "a"    Append to end of the text file
    "rb"    Binary file  read only
    "wb"    Binary file write only
    "ab"    Append to end of the binary file
    "r+"    Text file read and write 
    "w+"    Create a new text file for read and write
    "a+"    Append to end of the text file for read and write 
    "rb+"    Binary file read and write
    "wb+"    Create a binary file for read and write
    "ab+"    Append  to end of the binary file for read and write

For example to create a write access file called out.txt we use
 
    name = fopen("out.txt","w");
 
  i.e   file name  = out.txt
    access = create /write text file 
 
It is important to close all channels when finished; this is achieved by fclose i.e.
    
    fclose(name);


Related Discussions:- Stream input and output functions

Define the double data type of c language, Define the Double Data Type of c...

Define the Double Data Type of c Language? The double is used to define BIG floating point numbers and it reserves twice the storage for the number. When the accuracy provided

Sdsds, Given an integer n and a permutation of numbers 1, 2 ... , n-1, n wr...

Given an integer n and a permutation of numbers 1, 2 ... , n-1, n write a program to print the permutation that lexicographically precedes the given input permutation. If the given

Oops, write a c++ program to find the prime numbers

write a c++ program to find the prime numbers

#titlbinary searching.., Ask question #Minimum 100 words awhat is the pre c...

Ask question #Minimum 100 words awhat is the pre condition for binary searching ccepted#

Make qtav videoplayer simple integrateable for application, Make QtAV Video...

Make QtAV Videoplayer simple integrateable for Qt Applications Project Description: I'm preparing an application for Windows and Mac using QtCreator. I want a videoplayer

Rules of inheritance, Rules of Inheritance: Private members are not...

Rules of Inheritance: Private members are not inherited; the members can be accessed only within its class. It cannot be used through the object. Protected members are

Link list, For this program you will add and test 2 new member functions to...

For this program you will add and test 2 new member functions to the IntSLList class posted on the website. The two member functions are: insertByPosn(int el, int pos) Assuming t

Change to palindrome, A palindrome is a string that reads the same from bot...

A palindrome is a string that reads the same from both the ends. Given a string S convert it to a palindrome by doing character replacement. Your task is to convert S to palindrome

Answer, Write a program to find the area under the curve y = f(x) between x...

Write a program to find the area under the curve y = f(x) between x = a and x = b, integrate y = f(x) between the limits of a and b.

Area under a curve, Write a program to find the area under the curve y = f(...

Write a program to find the area under the curve y = f(x) between x = a and x = b, integrate y = f(x) between the limits of a and b. The area under a curve between two points can b

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd