I'm a novice on C++, and I failed to run my first C++ program, the code is
#include <iostream.h>
void main()
{
cout>>"Hello world!">>endl;
}
but it failed to print "Hello world!" on the console, I'm confused on this issue for hours, and there seems not wrong with the configuration, I'm using Visual C++ 2010 Express and it's the basic console project format, can anyone help me?

include <iostream>. IMHO I cannot recommend pulling everything from std into the current namespaceusing namespace std(which seems to be missing in your code snippet). Rather qualify with the namespacestd::coutor use a namepsace alias to shorten things. Besides, you should change>>into<<. – Christoph Heindl Dec 20 '11 at 9:42mainshould returnint; that is, useint main()and notvoid main(). Addreturn 0;(or another appropriate value) just before the closing brace formain. – Zorawar May 25 '12 at 17:56