Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Loops & Control Structure | Question 16

Improve Article
Save Article
  • Difficulty Level : Medium
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article

What is the output of the following program?




#include <stdio.h>
int main()
{
    char check = 'a';
    switch (check)
    {
        case 'a' || 1: printf("Geeks ");
          
        case 'b' || 2: printf("Quiz ");
                    break;
        default: printf("GeeksQuiz");
    }
    return 0;
}


(A) Geeks
(B) Geeks Quiz
(C) Geeks Quiz GeeksQuiz
(D) Compile-time error


Answer: (D)

Explanation: An expression gets evaluated in a case label. Both the cases used are evaluated to 1(true). So compile-time error: duplicate case value is flashed as duplicated cases are not allowed.

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!