Advertisements
Advertisements
प्रश्न
Differentiate “=” and “==”.
फरक स्पष्ट करा
उत्तर
- ‘=’ 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)
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Which of the following statements is not true?
Which of the following is called compile-time operators?
Can keywords be used as identifiers?
Write the following real constant into the exponent form:
0.00005
Write the following real constant into the exponent form:
0.319
Match the following.
A | B |
(a) Modulus | (1) Tokens |
(b) Separators | (2) Remainder of a division |
(c) Stream extraction | (3) Punctuators |
(d) Lexical Units | (4) get from |
Consider the following C++ statement. Are they equivalent?
char ch = 67;
char ch = ‘C’;
Determine which of the following are valid constant? And specify their type.
‘Name’
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?