Assignment Operators in C
C language provides one main assignment operator (=) which assigns to a variable on its LHS the outcome of some expression on its RHS. We have been using this operator since program 1. It is a binary operator. In addition, C language provides a set of shorthand assignment operators of the form variable arithmetic/bitwise-Operator = … Read more