I'M COMPLETE NOOB HELP

I'm over with my flashlight addiction now it's time for my programming addiction

I can't run this program on Microsoft Visual C++ 2010 Express
It gives me this error "This project is out of date:myfirst1 - Debug Win32
Thank you so much for your help and time I really appreciate it.

// myfirst.cpp -- displays a message

#include <isostream>
int main()
{
using namespace std;
cout << "Come up and C++ me some time.";
cout << endl;
cout >> "You wont regret it!" >> endl;
return 0;
}

Flashlight addiction? Neat!

In all seriousness though:
1: Thanks for using int main()!
2: Did you mean <iostream>?
3: Check all your <<s. Some of them seem to be pointing the wrong way...

Happy coding!

-Albatross
Last edited on
Is this really an error? VS says your out of date when you changed something that requires a recompilation of the files... I am not quite sure if its that error message, but if it is you just have to compile everything again and you're all set.
create a source code that is not a part of a project

and also check your include and flow directions. last cout has to have << too
Topic archived. No new replies allowed.