TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [TCLUG:7497] C++ libraries
Thanks for the help. I see iomanip.h has an #include <iostream.h>
statement, so I shouldn't even have to put that in my code.
----- Original Message -----
From: Ryan <rgoldber@d.umn.edu>
> setw() and setfill() are in iomanip.h
> also, you souldn't need the .h (#include <iomanip>)
>
>
> > Any programmers out there? I'm learning C++ and am using a book that
was
> > written with Borland C++ in mind. They use the setfill() and setw()
> > functions that are in the iostream.h library. But, I'm using Linux and
the
> > iostream.h library for g++ doesn't appear to have those functions.
Anyone
> > know if there is a different library I can install that would have them?