Question: H 6. Conditional construct The conditional construct if (x >= 5) { printf (Y); } is inserted at one of the insertion points in the
H
6. Conditional construct The conditional construct if (x >= 5) { printf ("Y"); } is inserted at one of the "insertion points" in the code below. if (Y != 15 ) { printf ("x"); /* INSERTION POINT A */ } else { /* INSERTION POINT B */ } /* INSERTION POINT C */ For each insertion point (A, B, and ), indicate under what conditionsin other words, for what values of variables X and Y-the resulting code prints nothing, "X", "Y", and "XY. For example, if the conditional construct based on X is NOT inserted, the answer should appear as follows: The code prints "X" when Y # 15, never prints "Y". and never prints "XY
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
