Computer Science, asked by ngamgouhaokyip, 1 day ago

What is called assignment operator?​

Answers

Answered by bangisameena07
2

Answer:

Assignment operators are used to assigning value to a variable. The left side operand of the assignment operator is a variable and right side operand of the assignment operator is a value. ... This operator is used to assign the value on the right to the variable on the left. For example: a = 10; b = 20; ch = 'y';

Answered by rachel002
2

Answer:

An assignment operator assigns a value to a variable.

Example:

a=10

Here the value '10' is assigned to 'a'

That is the value on the right gets stored in the variable on the left.

Hope this helps!

Have a good day!

Similar questions