The if statement

```
if (13 < 12)
printf("never\n");
else
printf("always\n");
```
a. displays never.
b. displays always.
c. will not compile since 13 is not less than 12.
d. causes a run-time error since 13 is not less than 12.
e. displays nothing since 13 is not less that 12.


B

Computer Science & Information Technology

You might also like to view...

What password was sent to the FTP server?

What will be an ideal response?

Computer Science & Information Technology

A worksheet displayed in its own window is called a(n) ____.

A. workspace B. instance C. workbook D. group

Computer Science & Information Technology

Certification alone is sufficient to qualify for a job in the IT industry.

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

Computer Science & Information Technology

The rand() function produces a series of random numbers in the range 0 < rand() < RAND_MAX, where the constant RAND_MAX is a compiler-dependent symbolic constant that is defined in the stdlib.h header file.

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

Computer Science & Information Technology