Jun 4, 2012 at 8:48am UTC
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.
Jun 4, 2012 at 9:15am UTC
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;
}
Jun 4, 2012 at 9:15am UTC
Doesn't Visual C++ show you a list of compiler or linker errors somewhere? It probably does. Fix those errors.
Jun 4, 2012 at 9:16am UTC
std::end1 should be std::endl .
Last edited on Jun 4, 2012 at 9:17am UTC
Jun 4, 2012 at 9:27am UTC
hey.. thanks.. it's actually the letter L like you said.
Jun 4, 2012 at 9:28am UTC
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 Jun 4, 2012 at 9:28am UTC