0% found this document useful (0 votes)
45 views2 pages

C++ Tutorial: (1) C++ Basic Object Oriented Concepts

The document is a tutorial about C++ programming. It provides an introduction to C++, discusses prerequisites and how to compile C++ programs. It also lists several sections that will be covered, including basic object oriented concepts, a quick C++ guide, useful resources, references and a C tutorial.

Uploaded by

Muhammad Zaini
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views2 pages

C++ Tutorial: (1) C++ Basic Object Oriented Concepts

The document is a tutorial about C++ programming. It provides an introduction to C++, discusses prerequisites and how to compile C++ programs. It also lists several sections that will be covered, including basic object oriented concepts, a quick C++ guide, useful resources, references and a C tutorial.

Uploaded by

Muhammad Zaini
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

C++ TUTORIAL

http://www.tuto rialspo int.co m/cplusplus/inde x.htm

Co pyrig ht tuto rials po int.co m

C++ is a middle-level prog ramming lang uag e developed by Bjarne Stroustrup starting in 1979 at Bell Labs. C++
runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.
T his reference will take you throug h simple and practical approach while learning C++ Prog ramming lang uag e.

AUDIENCE
T his reference has been prepared for the beg inners to help them understand the basic to advanced concepts
related to C++ Prog ramming lang uag es.

PREREQUISITES
Before you start doing practice with various types of examples g iven in this reference, I'm making an assumption
that you are already aware about what is a computer prog ram and what is a computer prog ramming lang uag e?

COMPILE/EXECUTE C++ PROGRAMS


For most of the examples g iven in this tutorial, you will find T ry it option to compile and execute C++ prog rams
online, so just make use of it and enjoy your learning .
T ry the following example using T ry it option available at the top rig ht corner of the below sample code box:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World";
return 0;
}

(1) C++ Basic Object Oriented Concepts


Just g o throug h these concepts to understand basic Object Oriented T erminolog y.
C++ Object Oriented Concepts

(2) C++ Quick Guide


A quick C++ reference g uide for C++ Prog rammers.
C++ Quick Guide

(3) C++ Useful Resources


A collection of C++ Sites, Books and Articles is g iven at this pag e.
C++ Useful Resources

(4) C++ References


A link on C++ Standard Library
C++ Standard Library

(5) C Tutorial
Learn C in really simple steps with examples using this tutorial.

C T utorial

(6) C++ Tutorial in PDF


Download a quick C++ tutorial in PDF format.
C++ T utorial in PDF

You might also like