Error Message: 'There were build errors. Would you like to continue and run the last successful build?

I have no experience of programming in any language whatsoever.. I encounter an error message in visual c++ 2010 express:

"Error Message: 'There were build errors. Would you like to continue and run the last successful build?"


what should I do? I followed all the steps that were shown in this tutorial:

http://www.youtube.com/watch?feature=player_embedded&v=PuzH8ZZ1j0s

note:
it's a tutorial from the year 2010.
Can you paste your code? And which IDE are you using?

I'd also suggest some online tutorials, I find videos are hard to follow while trying to learn, especially programming.
I'm using microsoft visual studio 2010 express c++

this is it:

#include <iostream>

int main() {
std::cout << "Hello World!" << std::end1;
std::cin.get();
return 0;
}
Doesn't Visual C++ show you a list of compiler or linker errors somewhere? It probably does. Fix those errors.
std::end1 should be std::endl.
Last edited on
hey.. thanks.. it's actually the letter L like you said.
I believe MSVCE does display many errors, Microsoft isn't THAT bad. And if I remember correctly, it actually does a pretty good job with the compile errors, should have caught that anyways.
Last edited on
Topic archived. No new replies allowed.