Wednesday, August 27, 2008

First Post

Well, the first post isn't going to be an amazing program. It's just the simple "Hello World" c++ program. After I'm done with c++ I'll be going to ASM, Then C#, Then Visual Basic.

______________________________________________________________________
// Hello World Complete.cpp : Defines the entry point for the console application.
// My First c++ Program

#include "stdafx.h"
#include
using namespace std;

int main( )
{
cout <<"Hello World!\n";
return 0;
}
______________________________________________________________________

No comments: