Search TekSocial
Stay Connected

Enter your email address:

(We respect your privacy!)

Or subscribe with your favorite RSS Reader

  

« Podcast Assist 1: Mic’s, RSS, Action! | Main | Gadgets to Get this Holiday Season »
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;

}

Reader Comments

There are no comments for this journal entry. To create a new comment, use the form below.

PostPost a New Comment

Enter your information below to add a new comment.

My response is on my own website »
Author Email (optional):
Author URL (optional):
Post:
 
Some HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>