Advertisements
Advertisements
Question
Differentiate “=” and “==”.
Distinguish Between
Solution
- ‘=’ is an assignment operator which is used to assign a value to a variable that is on the left-hand side of an assignment statement.
- ‘=’ operator copies the value at the right side
of the operator to the left side variable. Ex. num = 10; means 10 assign to the variable num. - ‘= =’ is a relational operator. It is used to compare both operands are the same or not.
- Ex. num = = 10 means it compare num value with 10 and returns true(l) if both are same or returns false(0).
shaalaa.com
Lexical Units (Tokens)
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which of the following operator is an extraction operator in C++?
Which of the following is a valid string literal?
The following constant is of which type?
0XCAFE
The following constant is of which type?
04.14
Write the following real constant into the exponent form:
0.00005
Write about Binary operators used in C++.
What is the difference between 56L and 56?
Determine which of the following are valid constant? And specify their type.
‘\t’
Determine which of the following are valid constant? And specify their type.
27,822
How relational operators and logical operators are related to one another?