Computer Science, asked by tanmaytalreja649, 7 months ago

difference between == operater and = operater​

Answers

Answered by shyap277
1

Answer:

Operator: this is a unary operator referred to as the reference operator. When used with an operand it returns the address of that operand. You can this use this result to manipulate with data.

Operator: This unary operator is referred to as the difference operator. When used with an operand (a pointer) it returns the value at the memory location stored in that operand.

Hope this helps.

Answered by golthipraveena
5
( == ) operator : this is a comparison operator used to compare any two set of variables of same data type .
Eg: 5==6; ->compare 5 & 6

( = ) operator : this is an assignment operator used to assign values to the variables .
Eg : a=5; -> assigns 5 to variable a
Similar questions