========== Rebuild All: 1 succeeded, 0 failed, 0 skipped ==========If there are any failures, view the lines, correct them - it's most likely a mistyped character and recompile again.
After a successful compilation, click on the line that says return 0 and press the F9 key. It should put a small circular arrow in the margin. That's a breakpoint. Now press F5 and the program should run until it hits the line where you pressed F9.
You should be able to click the black box where the output of the application goes and see the Hello World message in the top left corner. On the next page you'll see a screen dump of this.
Now select Visual C++ again, and press F5 again. The program will run to completion and the output window will vanish. If we hadn't created a break point you wouldn't have seen the output.
That completes the installation. Now why not have a look at the C and C++ Tutorials.
- Link to C++ Programming Tutorials.
- Link to C Programming Tutorials.


