adplus-dvertising
frame-decoration

Question

In a for loop, if the condition is missing, then,

a.

it is assumed to be present and taken to be false

b.

it is assumed to be present and taken to be true

c.

it results in a syntax error

d.

execution will be terminated abruptly

Answer: (b).it is assumed to be present and taken to be true

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. In a for loop, if the condition is missing, then,

Similar Questions

Discover Related MCQs

Q. In a for loop, if the condition is missing, then infinite looping can be avoided by a

Q. Which of the following comments about for loop are correct?

Q. Which of the following comments about for loop are correct ?

Q. Choose the correct answers

Q. Consider the following program fragment

if (a > b)
if (b > c)
s1 ;
else s2;

s2 will be executed if

Q. If switch feature is used, then

Q. The switch feature

Q. Break statement can be simulated by using

Q. The body of the following for loop

 for( putchar( 'a' ); putchar (0); putchar (' c ') ) putchar ( 'b') ;

will be executed

Q. Using goto inside for loop is equivalent to using

Q. The for loop
 for( i=0; i<10; ++i)
 printf("%d", i & 1);
prints

Q. In the following loop construct, which one is executed only once always.

for(exp1; exp2; exp3)

Q. The continue statment cannot be used with

Q. goto can be used to jump from main to within a function?

Q. Which loop is guaranteed to execute at least one time.

Q. A labeled statement consist of an identifier followed by

Q. do-while loop terminates when conditional expression returns?

Q. c = (n) ? a : b; can be rewritten as
exp1 ? exp2 : exp3;

Q. For loop in a C program, if the condition is missing?

Q. Which of the following statement about for loop is true ?