adplus-dvertising
frame-decoration

Question

What is the output of C program with switch statement or block?
int main()
{
    char code='K';
    
    switch(code)
    {
        case 'A': printf("ANT ");break;
        case 'K': printf("KING "); break;
        default: printf("NOKING");
    }
    
    printf("PALACE");
}

a.

KING PALACE

b.

KING NOTHING PALACE

c.

ANT KING PALACE

d.

Compiler error for using Non Integers as CASE constants.

Answer: (a).KING PALACE

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of C program with switch statement or block?

Similar Questions

Discover Related MCQs

Q. Expand or Abbreviate ASCII with regard to C Language.

Q. What are C ASCII character ranges?

Q. Choose a correct C Statement regarding for loop.

for(; ;);

Q. Choose a correct statement about C language break; statement.

Q. Choose a correct statement about C break; statement?

Q. Choose facts about continue; statement is C Language.

Q. What is the way to suddenly come out of or Quit any Loop in C Language?

Q. Choose correct Syntax for C Arithmetic Compound Assignment Operators.

Q. Choose a correct C do while syntax.

Q. Choose a correct C for loop syntax.

Q. Choose correct C while loop syntax.

Q. Which loop is faster in C Language, for, while or Do While?

Q. Loops in C Language are implemented using?

Q. Choose a right C Statement.

Q. Choose a correct C Statement.

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

Q. What is the Priority of C Logical Operators?

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

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. In the context of "break" and "continue" statements in C, pick the best statement.

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