Assignment operator

 Assignment operator :-


  (=) Assignment operator  in C language is used to assign the value of right-hand side

value/variable/expression to the left hand side variable .e.g:  a = 4; here constant 4 at R.H.S is called r-
value and identifier a at the L.H.S is called l-value

Comments