Categories: C++Learn C++

The Operator in C++ Programming language

The operator in C++ Programming language

In this tutorial, we will discuss the Operator in C++ Programming language.

C++ operators

Many types of operators are available in java that is used to perform various operations.
Type of C++ operators given below

  1. Arithmetic Operator
  2. Unary Operator
  3. Assignment Operator
  4. Relational Operator
  5. Bitwise Operator
  6. Logical Operator
  7. Ternary Operator

Arithmetic Operator in C++

Arithmetic Operators are used for basic arithmetic calculations like addition(+), subtraction(-), multiplication(*), division(/) and modulus(%) operations

This table lists the arithmetic operators used in c ++ Programming language

Arithmetic

Example

Example

When we executed the above program, it produced the following result.

addition of a+b : 32
subtraction of a-b: 8
multiplication of a*b is: 240 
division  a/b is: 1
modulus of a%b is: 8

2. Unary Operator in C++

The unary operators in C++, “-” ,”+” operators change the sign of a given value.

The “++” and the “–” operators perform increment or decrement by one from the given value.

unary

 

Example

Example

When we executed the above program, it produced the following result

a++ value is :12
a--  value is: 13
++a value is: 13
--a value is: 12

3. Assignment Operator

The assignment operator is used to assign value to a variable. Assignment operator passes the value at the right side of the operator into the left side variable.

assignment

Example 1

Example

 

When we executed the above program, it produced the following result
In b=a,b value is: 12
In b+=a,b value is: 24
In b-=a,b value is: 12
In b*=a,b value is: 144
In b/=a,b value is: 12
In b/=a,b value is: 0

4. Relational Operator

In C++ programming, the relational operator can be used to compare values stored in two variables.

Six types of the relational operator that are commonly used in C++.

Relational
Example

5. Logical Operator


Logical operators are used to comparing more than one condition. The following table displays the different c++ logical operators that are available.

 

Example
Example

When we execute the above program, it  produced the following result

You are not a students

6. Bitwise Operator

The bitwise operator is used to do the bit-level calculation. Various bitwise operators are available in C++for manipulation of bits.   C++ bitwise operators operate on integer and character data type only.

Bitwise
Program
Example

When we executed the above program, it produces the following result

value of a & b is: 1
value of a | b is: 21
value of a ^ b is: 20
value of a << b is : 20
value of a >> b is : 2
Similar post
Karmehavannan

Recent Posts

Multiply two numbers in Java using scanner| 5 different ways

Multiply two numbers in Java using scanner| 5 different ways In this article, we will…

3 months ago

5 different ways to Divide two numbers in Java using scanner

5 Different ways to Divide two numbers in Java using scanner In this article, we…

3 months ago

Learn 8 Ways to Subtract Two Numbers Using Methods in Java

Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…

4 months ago

10 ways to subtract two numbers in Java

10 ways to subtract two numbers in Java In this article, we will discuss the…

4 months ago

Java Code Examples – Multiply Two Numbers in 5 Easy Ways

Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…

4 months ago

How to Divide two numbers in Java| 5 different ways

How to Divide two numbers in Java| 5 different ways In this article, we will…

4 months ago

This website uses cookies.