Usages and Definitions of All Operators in C
October 16th, 2009
No comments
There is a list of all operators in C.
- Assignment Operator
- Arithmetic Operators
- Cast Operator
- Increment and Decrement Operators
- Abbreviated Assignment Operators
- Relational Operators
- Logical Operators
I. Assignment Operator
Equal sign (=) is used as assignment operator in C and it must be read as “is assigned the value of”.
That means: a is assigned value of b. There is also this usage that allows you to make multiple assignments like this:
All of the variables are equalized to 153. The precedence of assignment operator is right to left. That means first o is equalized to 153, then c is assigned value of o which is 153, finally r is assigned value of c. Click to Read Complete Article »

Recently Typed