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