Operators in C++

An operator is a symbol that performs a specific mathematical or logical operation on operands.Example: Addition : 2 + 3, where 2 and 3 are the operands and + is the operator. We can say that operators are the foundation …

Read moreOperators in C++

C++ Variables

The variable is the basic unit of storage that holds the value while the program is executed. We can also say that it is a name given to the memory location. A variable is defined by data-types provided by C++. These …

Read moreC++ Variables

C++ Data types

While writing a program, we store the information by creating a variable. These variables are nothing but the name given to some unspecified memory location. Now the information can be character type, integer type, double, float etc. A data type …

Read moreC++ Data types

C++ Introduction

C++ is a powerful general-purpose, case-sensitive, free-form programming language that supports object-oriented, procedural, and generic programming. It is a mid–level language as it comprises both low and high-level language features. C++ programming language developed by Bjarne Stroustrup starting in 1979 …

Read moreC++ Introduction

Features of C++

C++ is an Object-Oriented Programming Language, which is its main feature. It can create and destroy objects while programming. As it is an enhancement to C, hence it possesses all the features offered by C along with its new important …

Read moreFeatures of C++