Easier View

Very sorry, The posts are all mixed-up . View blog archieve to start learning =D

About Me

My name is Luke Chin. Here to teach you guys how to code C++

Wednesday, April 11, 2007

Your First C++ Program =D

#include // input output header file

int main() // you MAIN function
{
std::cout << "Helloworld"; // printing helloworld to the screen

system("pause"); // this is used to pause the application

return 0; // ending your program
}

No comments: