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

Subtract two numbers using method overriding

Subtract two numbers using method overriding   Program 1

3 months ago

PHP Star triangle Pattern program

PHP Star triangle Pattern program Here's a simple Java program that demonstrates how to print…

3 months ago

Using function or method to Write temperature conversion : Fahrenheit into Celsius

Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…

1 year ago

Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user

Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…

1 year ago

Write temperature conversion program: Fahrenheit into Celsius

Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…

1 year ago

How to write a program to convert Fahrenheit into Celsius

How to write a program to convert Fahrenheit into Celsius In this article, we will…

1 year ago

This website uses cookies.