What is displayed by the C statements that follow if the value input is 9?

```
scanf("%d", &num);
if (90 < num <= 100)
printf(“Grade is an A.”);
else
printf(“Grade is less than an A.”);
```

a. Grade is an A.
b. Grade is less than an A.
c. true
d. false
e. The code will not compile.

c. true

Computer Science & Information Technology

You might also like to view...

The | character is referred to as a________.

a) text delimiter b) text qualifier c) field delimiter d) field qualifier

Computer Science & Information Technology

Search text generally is not case sensitive.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology