hi everyon i'm new and i need some help. I've been taking a class in C++ and i downloaded the C++ 2005 express edition to my laptop to work on it at home, and the header file iomanip.h doesn't work. I bet this is probally an easy fix but help would be great
FlyingRedneck 0 Newbie Poster
Recommended Answers
Jump to Post>now it doesn't know what cout or cin is
That's because all objects in the standard template library are encased inside the std:: namespace to avoid abiguities.You have 2 options: prefix all objects with std::, like this:
std::cout << "hello world" << std::endl;
The other …
Jump to PostPost your code and the error messages you receive, please.
Jump to PostIt uses the new headers, too.
Which is exactly why the instructors use it: because they can. :rolleyes:
Jump to PostWhat's wrong with VC6 then?
Hmm, well if the instructors used the latest version it wouldn't permit (or at least give lots of warnings, I haven't actually installed 2005 edition yet) the use of these old headers.
Meh, that statement was completely meaningless since VS 2005 won't even compile …
All 15 Replies
Infarction 503 Posting Virtuoso
FlyingRedneck 0 Newbie Poster
John A 1,896 Vampirical Lurker Team Colleague
FlyingRedneck 0 Newbie Poster
John A 1,896 Vampirical Lurker Team Colleague
WaltP 2,905 Posting Sage w/ dash of thyme Team Colleague
John A 1,896 Vampirical Lurker Team Colleague
WaltP 2,905 Posting Sage w/ dash of thyme Team Colleague
John A 1,896 Vampirical Lurker Team Colleague
Infarction 503 Posting Virtuoso
John A 1,896 Vampirical Lurker Team Colleague
FlyingRedneck 0 Newbie Poster
John A 1,896 Vampirical Lurker Team Colleague
FlyingRedneck 0 Newbie Poster
John A 1,896 Vampirical Lurker Team Colleague
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.