adplus-dvertising
frame-decoration

Question

If switch feature is used, then

a.

default case must be present

b.

default case, if used, should be the last case

c.

default case, if used, can be placed anywhere

d.

none of the above

Answer: (c).default case, if used, can be placed anywhere

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. If switch feature is used, then

Similar Questions

Discover Related MCQs

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 ?

Q. In the context of "break" and "continue" statements in C, pick the best statement.

Q. In _______, the bodies of the two loops are merged together to form a single loop provided that they do not make any references to each other.

Q. What is the Priority of C Logical Operators?

NOT (!), AND (&&) and OR (||)

Q. Choose a correct C Operator Priority?
Items in one group ( ) has same priority.

Q. Choose a correct C Statement.

Q. Choose a right C Statement.