** Operators in C **
Following up my notes on Data Types and Variables in C here are notes on operators in C.
An operator is a symbol that represents a mathematical or logical operation. An operator effects operands.
C provides a number of operators.
Some arithmetic operators include,
”`hljs plaintext
+*
/
%
”`
%
is the most exciting of the list, it is called modulo and it returns the remainder after division. Of note, modulo c … ⌘ Read more