Jump to content

User:LAKSHMI TG/File handling in c++

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by UnitedStatesian (talk | contribs) at 15:39, 5 April 2022 (removed Category:Articles created via the Article Wizard using HotCat). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

File Handling in C++ Most computer programs work using files as they provide a permanent storage. Compiler [1]will read the source files and create the files of information. At the lowest level , it is interpreted as stream of bytes.In C++ file input/output operations are implemented through a component header file of C++ called as fstream.h.


References

[edit]
  1. ^ "Compiler". Wikipedia. Retrieved 31 December 2015.
[edit]