Question: Often developers make the mistake of writing an if statement that checks to see if an integer i is equal to 1 as if (i

Often developers make the mistake of writing an if statement that checks to see if an integer i is equal to 1 as if (i = 1). What happens when you compile the code?:* A) It doesn't compile. You cannot have an assignment statement inside an if statement. B) It doesn't compile. i = 1 does not evaluate to a bool. C) The code will compile but the if will always evaluate to true at run time. D) The code will compile, i will first be checked against 1, then i will be assigned the value 1
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
