it is binary operator.
Binary operator means require arguments i.e. left right side arguments.
By using assignment operator we can assign right side value to left side variable.
When we are working with binary operator if any one of the argument is missing, it gives an error.
When we are working with assignment operator right side argument can be variable type or constant type left side argument must be variable type only.
Syntax:-
Ex:
A= 100; A= 100; Error statement missing A= 12.86; A= ‘D’ A=; Error R value require (Binary) C= 120; Error (Binary) 100= 200; Error L side should be veg. A= 100; B= a;