Describe the arithmetic expression and assigment statement in C language.
Answers
Answered by
2
Answer:
expression assignment. average = sum / count; In the C-based languages, this can be specified more conveniently in an assignment statement using a conditional expressions. Note that ? is used in conditional expression as a ternary operator (3 operands).
Explanation:
C provides an assignment operator for this purpose, assigning the value to a variable using assignment operator is known as an assignment statement in C. The function of this operator is to assign the values or values in variables on right hand side of an expression to variables on the left hand side.
Similar questions