what is the use of these header files #include,#includeand #include in c++?
anie 1
2009-11-08 08:21:37 UTC
what is the use of these header files #include,#includeand #include in c++?
Five answers:
Anil
2009-11-08 08:36:46 UTC
-- for defining several iostreams template classes that manipulate exteral files
fstream is a standard C++ library that handles reading from and writing to files either in text or in binary formats. It is an object oriented alternative to C's FILE from the C standard library. fstream is the result of a multiple inheritance with ifstream and ofstream, which both inherit from ios.
-- for declaring several iostreams manipulators that take an argument
Provides facilities to manipulate output formatting, such as the base used when formatting integers and the precision of floating point values.
process.h is a C header file which contains function declarations and macros used in working with threads and processes. Neither the header file nor the functions are defined by either the ANSI/ISO C standard or by POSIX. Most C compilers that target DOS, Windows 3.1x, Win32, OS/2, Novell NetWare or DOS extenders supply this header and the library functions in their C library.
anonymous
2016-11-10 16:03:46 UTC
Include Iomanip
anonymous
2015-08-06 20:05:45 UTC
This Site Might Help You.
RE:
what is the use of these header files #include<iomanip.h>,#include<fstream.h>and #include<process.h> in c++?
batalone
2016-12-16 21:25:38 UTC
Iomanip
anonymous
2014-02-06 13:41:16 UTC
GOod
ⓘ
This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.