Open In App

C | Loops & Control Structure | Question 15

Like Article
Like
Save
Share
Report

In the following program, X represents the Data Type of the variable check.




#include <stdio.h>
int main()
{
    X check;
    switch (check)
    {
        // Some case labels
    }
    return 0;


Which of the following cannot represent X?
(A) int
(B) char
(C) enum
(D) float


Answer: (D)

Explanation: A switch expression can be int, char and enum. A float variable/expression cannot be used inside switch.

Quiz of this Question


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