What is "Expression" referring to? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is "Expression" referring to?

Prefix increments the value, and then proceeds with the "expression". Postfix evaluates the "expression" and then performs the incrementing.

18th Jun 2020, 9:01 AM
Sarith Peiris
Sarith Peiris - avatar
1 Answer
+ 4
An expression is a combination of operators and operands in general. a + b a++ - b-- a * b - c ++a + ++b a / b + c Above all are legal combinations and can be called an expression.
18th Jun 2020, 9:27 AM
Avinesh
Avinesh - avatar