C++Data StructuresAlgorithmsCompetitive ProgrammingJavaPythonMicroprocessorsGraph TheoryComputer System ArchitectureMachine LearningArtificial IntelligenceData Structures in PythonJavascriptMySQLAndroid DevelopmentAlgorithms in PythonCoding InterviewData ScienceData Structures in JavaObject Oriented DesignLinked ListBinary Trees

C++

Hello World in C++

Data Types | Operators in C++

Flow Control | PART-1

Flow Control | PART-2

Functions | PART-1

Functions | PART-2

Arrays

Structures | PART-1

Structures | PART-2

Object Oriented Programming | PART-1

Object Oriented Programming | PART-2

Classes and Objects | PART-1

Classes and Objects | PART-2

Constructors in C++

Copy Constructors

Destructors in C++

Inheritance & its types

Visibility Modes in Inheritance

Inheritance Implementation in C++

Constructors in multiple inheritance

Function Overriding

Inheritance Implementation in C++

Function Overloading

Introduction to Pointers

Working with Pointers

Function Templates STL

Function Templates Implementation

Class Templates

Vectors

Virtual Functions

Friend Classes and Friend Functions

Map in C++ STL

Macros in C++

C++

C++ is a very powerful programming language and provides a lot of tools to the programmers. It is an object-oriented programming language used in a lot of platforms created by Bjarne Stroustrup as an extension on C programming language.Here is a first look at the C++ Hello World program.


#include <iostream>
using namespace std;

int main(){
	cout << "Hello World";
}