Explain Operators and Operands?
Answers
Answered by
1
Example:
int a,b,c;
c=a+b;
In the above example:
'+' sign is operator
and 'a' and 'b' are operands
and stores the value returned by that expression
int a,b,c;
c=a+b;
In the above example:
'+' sign is operator
and 'a' and 'b' are operands
and stores the value returned by that expression
Similar questions