For what exact range of values of variable x does the following code segment display the letter 'C'?
```
if (x <= 200)
if (x < 100)
if (x <= 0)
printf("A\n");
else
printf("B\n");
else
printf("C\n");
else
printf("D\n");
```
a. 0 < x < 100
b. x <= 0
c. 100 <= x <= 200
d. x > 200
e. 100 < x <= 200
c. 100 <= x <= 200
Computer Science & Information Technology
You might also like to view...
What is alignment?
What will be an ideal response?
Computer Science & Information Technology
A quad-core computer uses multiple processors
Indicate whether the statement is true or false
Computer Science & Information Technology
?A red Mustang is a(n) _____ of the CAR class.
A. ?index B. ?key C. ?metric D. ?instance
Computer Science & Information Technology
A software ________ is also known as an End User License Agreement.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology