Hello World (50 points)

This program is a standard "first" program for students of C or C++ (or most other languages as well). The program is very simple and the main goal of the exercise is really just to get used to creating, compiling, and running a program. You will also have a chance to try out the assignment submission system for this class.

Your program will not take any input and will do only one thing. It will print the phrase "Hello, World!" on the screen each time it is run. That's it. So here's an example run (the > represents the command prompt).

When you compile the program, it creates an executable ie. programname.EXE

But, since this is a DOS based application, it will not open correctly, but you should be able to see the
output when you run it from the compiler.

The output will quickly open and then close. You can view it again by choosing the option : Window, then Output in the TC Lite compiler

 
  command> hello               <<<< if you try this method you will get an error message. 
  Hello, World!
  command> hello
  Hello, World!
  command>     

Submit:

For this assignment you only need to submit your source code printed.

Make sure to use the guidelines for writing code.