Table of Contents
In this tutorial, we will discuss the Operator in C++ Programming language.
Many types of operators are available in java that is used to perform various operations.
Type of C++ operators given below
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
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
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.
a++ value is :12 a-- value is: 13 ++a value is: 13 --a value is: 12
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.
Example 1
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
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++.
Logical operators are used to comparing more than one condition. The following table displays the different c++ logical operators that are available.
When we execute the above program, it produced the following result
You are not a students
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.
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
Multiply two numbers in Java using scanner| 5 different ways In this article, we will…
5 Different ways to Divide two numbers in Java using scanner In this article, we…
Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…
10 ways to subtract two numbers in Java In this article, we will discuss the…
Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…
How to Divide two numbers in Java| 5 different ways In this article, we will…
This website uses cookies.