Describe three types of c++ expressions with an example
Answers
Answered by
1
Explanation:
C++ expressions are divided into several categories:
Primary expressions. ...
Postfix expressions. ...
Expressions formed with unary operators. ...
Expressions formed with binary operators. ...
Expressions with the conditional operator. ...
Constant expressions. ...
Expressions with explicit type conversions
Answered by
0
C++ ExpressionC++ expression
consists of operators, constants, and variables which are arranged according to the rules of the language. It can also contain function calls which return values. An expression can consist of one or more operands, zero or more operators to compute a value. Every expression produces some value which is assigned to the variable with the help of an assignment operator.Examples of C++ expression:(a+b) - c (x/y) -z 4a2 - 5b +c (a+b) * (x+y)
I hope it's help to you!
#Pagalbaccha!
Similar questions