Operators in C Programming
Operators perform operations by taking one or more values, to give another value. These operations are performed on variables and values. In this lesson, we will learn about operators in C Programming.
For example:
The following example shows how to work with Arithmetic operators in C Programming,
C Assignment Operator
Use the Assignment Operator when you need to assign a value to a variable. Assignment means assigning the value of the right operand(s) to the left operand.
C Arithmetic Assignment Operator
Use the Arithmetic Assignment Operator when you need to perform arithmetic operations such as add, subtract, divide, multiply, etc and at the same time assign a value.
The following example shows how to work with Arithmetic Assignment Operators in C Programming,
C Relational/ Comparison operators
Compare two values with relational operators, which are also known as Comparison Operators.
The following example shows how to work with Relational Operator in C Programming,
C Logical Operators
Logical operators combine conditional statements. For example, we’re considering Boolean variables a and b,
The following example shows how to work with Logical Operator in C Programming,
C Unary operators
Unary operators include pre as well as post-increment and decrement operators,
The following example shows how to work with Unary Operators in C Programming,
C Conditional Operators
Conditional operator evaluates Boolean expressions, with three operands. It is also known as the ternary operator. The role is to assign a value to a variable, from two given set options.
Here’s how to use it,
In this lesson, we learned about Operators in C Programming. We saw how to work with Arithmetic, Unary, Relational, Arithmetic Assignment, and other operators.
If you liked the tutorial, spread the word and share the link and our website LANGUAGE CODING with others.
0 comments:
Post a Comment