What is displayed by the C statements that follow if the value input is 2?
```
scanf("%d", &ctl);
switch (ctl) {
case 0:
case 1:
printf("red ");
case 2:
printf("blue ");
case 3:
printf("green ");
case 4:
printf("yellow");
}
printf("\n");
```
a. red
b. blue
c. green
d. yellow
e. blue green yellow
E
Computer Science & Information Technology
You might also like to view...
Data macros can be executed directly from the Navigation Pane by double-clicking the macro object, clicking Run in Design view, or by attaching the macro to a database object, like a button or text field
Indicate whether the statement is true or false
Computer Science & Information Technology
The vertical space between paragraphs is called paragraph spacing.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology