Thursday, September 18, 2008

First C++ program, I'm smiling =)

// Page12_Chapter1.cpp : Defines the entry point for the console application.
//

/* Program #1 - A first C++ program.

Enter this program, then compile and run it.
*/

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

// main() is where program execution begins.

int main() // sz: so here is where program execution begins!
{
cout << "Hello World! This is Xiaoxue's first C++ program :]";

return 0;
}