Home » C Programming » Decision Making » Question
  1. What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)
    #include <stdio.h>
    void main()
    {
    char *name;
    printf("Enter a value between 1 to 3:");
    scanf("%s", name);
    switch (name)
    {
    case "1":
    printf("1");
    break;
    case "2":
    printf("2");
    break;
    }
    }
    1. name
    2. 1
    3. 2
    4. Compilation Error
    5. None of these
Correct Option: D

Compilation Error

main.c: In function ‘main’:
main.c:7:17: error: switch quantity not an integer
switch (name)
^~~~
main.c:9:9: error: case label does not reduce to an integer constant
case "1":
^~~~
main.c:12:9: error: case label does not reduce to an integer constant
case "2":



Your comments will be displayed only after manual approval.