Question: Consider the following program: int cmp (int *i) { return 2; void main) int x 3; if ((x 2) && (cmp (&x))) x = x

Consider the following program: int cmp (int *i) { return 2; void main) int x 3; if ((x 2) && (cmp (&x))) x = x + cmp (&x); printf("%d ",x); What is the output of this program assuming: a- (2 pts) operands are evaluated left to right and operators perform short- circuit evaluation. b- (2 pts) operands are evaluated left to right and operators do not perform short-circuit evaluation. c-(2 pts) operands are evaluated right to left and operators perform short- circuit evaluation. d-(2 pts) operands are evaluated right to left and operators do not perform short-circuit evaluation
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
