9:25PM
C++ Tutorial 1: Installation and "Hello World"
Have you ever wanted to learn C++, but was a bit intimidated from all that iostream and namespaces? Well, think again. Here is my simple, easy to follow tutorial on writing your first C++ program, a "Hello World" app in our recently installed IDE, Dev C++.
Source Code:
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!";
system("pause");
return 0;
}
Submitted by Matthew Keating Nov 29, 2010 at 9:25 PM
Reader Comments