Explain about Evaluation of Expression in c language?
An Expressions are evaluated using an assignment statement of the form:
variable = expression;
The Variable is any valid C variable name. All variables used in the expression should have assigned values before evaluation attempted. An Expression can also represent logical conditions that are either true or false. In C, the conditions true and false are represented by an integer value 1 and 0 respectively.