Day 5 of Learning C/C++: Operators in C Language
1. Arithmetic Operators: +, -, *, /, % (modulus is also remainder)All the above arithmetic operators are binary operators (the operator is 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 figure below. … Read more