Tuesday, August 24, 2010

Hello World!



The first thing you need to know is how to "empty yourself". In the course you've chosen ( IT ) you'll be dealing with a lot of definitions and syntax, some of which you might have opposing opinions about. Allow them to breach into your system and become a way of life. A good way to start maybe is by making your first ever C++ program.


1. #include <iostream>
2.
3. using namespace std;
4.
5. int main()
6. {
7. cout << "Wassup world!";
8. return 0;
9. }

included in the lines above are the following important things which you may want to look up to get to know them more.
  • line (1) - preprocessor directives
  • line (3) - namespace
  • line (5) - the main function
  • line (7) - standard output operator
  • line (8) - return statement
  • lines (6) & (9) - curly braces
We welcome questions.

-oOo-
nothing follows

4 <- post your comments here: