Getting a good start in any new technology or programming
language often depends on finding the best available information. The C++
QuickStart tool, available from Builder Downloads, can give you a jump start toward mastering
the C++ programming 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.
QuickStart download
The Builder.com
C++ QuickStart tool gives you the information you need to quickly grasp the
fundamentals of developing in the C++ programming language. You can download
the complete QuickStart PDF from the Builder.com downloads page.