I have been trying to build a project with a header file and two cpp files. One of the cpp files is a test driver (main) and it uses <iomanip> library.
I have Dev C++ IDE and compiler, and I checked in the "libraries" folder and I don't see <iomanip>. I think I need to import it or download it from somewhere to use it in my program becuase I keep getting a compiler error on the line before the #include <iomanip> statement.
I think it is part of the C++ Standard Library, But where can I get it from? Help much appreciated.
<iomanip> is a standard library so it should be installed. It might be helpful if you provide the exact error message and also post the lines leading up to the error statement.