119) The following statements
for (i= 3; i < 15; i += 3)
{
printf ("%d ", i);
++i;
}
will result in the printing of
Answer is:
3-7-11
Related C Programming MCQ with Answers
Answer is:
it is assumed to be present and taken to be true
Answer is:
All of the above
Answer is:
All of the above
Explanation:
In for loop
* Index value is retained outside the loop and can be changed from within the loop
* Body of the loop can be empty
* go to can be used to jump. out of loop
Answer is:
All of the above
Explanation:
In for loop
* Using break is equivalent to using a goto that jumps to the statement immediately following the loop
* Continue is used to by-pass the remainder of the current pass of the loop
* If comma operator is used, then the value returned is the value of the right operand