Day 5 of Learning C/C++: Operators in C Language
1. Arithmetic Operators: +, -, *, /, % (modulus also refers to remainder)All the above arithmetic operators are binary operators (the operator is located between two operands).It is important to note that in C language, integer division is always integer division, returning only the integer part and discarding the decimal part, as shown in the … Read more