X
Business

C++ jump-start guide

This C++ QuickStart tool gives you the information you need to quickly grasp the fundamentals of developing in the C++ programming language.
Written by Mark Kaelin, Contributor
Are you a C++ novice who want to get a good start in this scripting language? The Builder C++ QuickStart will take you through the fundamentals of the language, starting with the basic "Hello World" program, as shown in this excerpt:

Open your favorite C++ integrated development environment (IDE), and create a New Project. Or, create a text file called helloworld.cpp, and open it in a text editor. Type the following code:
#include <iostream>
int main() {
    std::cout << "Hello World" << std::endl;
    return 0;
}

The procedure to compile and run the above program will depend on your chosen development environment.

Download below
Ready to start download? Click here.
Editorial standards