What is the program output if the user types runt followed by a carriage return when the program is run?

```
char r, x, y, z, w;

scanf("%c%c%c%c", &x, &y, &z, &w);
if (x < y)
r = x;
else
r = y;
if (r > z)
r = z;
if (r > w)
r = w;
printf("%c\n", r);
```
a. r
b. u
c. n
d. t
e. none of the above

c. n

Computer Science & Information Technology

You might also like to view...

In a Try-Catch structure, the ____ statement is optional and always executes last.

A. Final B. Finally C. Last D. End

Computer Science & Information Technology

A form letter is a document that you create using Microsoft Word and that contains codes to tell Word where to insert the record from the data source. The codes are the same as the field names used in the data source.

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

Computer Science & Information Technology