Open In App

C | Loops & Control Structure | Question 17

Like Article
Like
Save
Share
Report

Predict the output of the following program:




#include <stdio.h>
int main()
{
    int check = 20, arr[] = {10, 20, 30};
    switch (check)
    {
        case arr[0]: printf("Geeks ");
        case arr[1]: printf("Quiz ");
        case arr[2]: printf("GeeksQuiz");
    }
    return 0;
}


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


Answer: (D)

Explanation: The case labels must be constant inside switch block. Thats why the compile-time error: case label does not reduce to an integer constant is flashed.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads