Question: What is output from the following code segment: for (x = 1; x
What is output from the following code segment:
for (x = 1; x <= 5; x++) { if (x != 3) continue;
printf ("%i ", x); } /* end for loop */
printf ("Greetings");
Would this be 3 greetings?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
