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) break;
printf ("%i ", x); } /* end for loop */
printf ("Greetings");
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
