top of page

Getting started with C++


C++ is a widely used general programming language. If you want to get started using C++ on Windows download Code Blocks here, specifically the file named, codeblocks-17.12mingw-setup.exe. The install should be nice and easy.

In the file menu open an empty new file. In the new file post the following code:

#include <iostream> using namespace std;

int main() { string s1, s2, result;

cout << "Enter string s1: "; getline (cin, s1);

cout << "Enter string s2: "; getline (cin, s2);

result = s1 + s2;

cout << "Resultant String = "<< result;

return 0; }

. . . which can be found here. This code can be used to join together two different strings.

Save the file with the .cpp extension.

Then go to Build . . . Run

You will be prompted to join together separate strings like this:


 

Sean O'Shea has more than 20 years of experience in the litigation support field with major law firms in New York and San Francisco.   He is an ACEDS Certified eDiscovery Specialist and a Relativity Certified Administrator.

​

The views expressed in this blog are those of the owner and do not reflect the views or opinions of the owner’s employer.

​

If you have a question or comment about this blog, please make a submission using the form to the right. 

Your details were sent successfully!

© 2015 by Sean O'Shea . Proudly created with Wix.com

bottom of page