Back to Browse

2.Operators in C programming.part-1

93 views
Dec 29, 2021
48:38

1. Arithmetic Operators: These operators are used to perform arithmetic/mathematical operations on operands. Examples: (+, -, *, /, %,++,–). Arithmetic operators are of two types: a) Unary Operators: Operators that operate or work with a single operand are unary operators. For example: Increment(++) and Decrement(–) Operators int val = 5; ++val; // 6 b) Binary Operators: Operators that operate or work with two operands are binary operators. For example: Addition(+), Subtraction(-), multiplication(*), Division(/) operators int a = 7;

Download

0 formats

No download links available.

2.Operators in C programming.part-1 | NatokHD