I'm just wondering what exactly does #include <iomanip> do? I've been looking it but I'm not really understanding what exactly it does to a code. If anyone can explain to me thanks.
This is a discussion on C++ Iomanip within the C++ Programming forums, part of the General Programming Boards category; I'm just wondering what exactly does #include <iomanip> do? I've been looking it but I'm not really understanding what exactly ...
I'm just wondering what exactly does #include <iomanip> do? I've been looking it but I'm not really understanding what exactly it does to a code. If anyone can explain to me thanks.
By it's self it does nothing to your code. It allows you to use the functions it prototypes in your program, for example the setw() manipulator is prototyped in this header.
Jim
It includes a header that allows you to use some functionality in the standard library that has to do with I/O stream manipulation.
C + C++ Compiler: MinGW port of GCC
Version Control System: Bazaar
Look up a C++ Reference and learn How To Ask Questions The Smart Way