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...

To open the Relationships window, click the ____________________ button on the Database Tools tab of the Ribbon.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Both the variables and functions listed in the class declaration section are collectively referred to as ____.

a. class methods b. class attributes c. class members d. class instance variables

Computer Science & Information Technology

Spammers use software called "spiders" to crawl through Web pages and find linked e-mail addresses. 

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

Computer Science & Information Technology

What is the term used that defines network cabling between the IDF and MDF?

A. structured cabling B. backbone cabling C. horizontal cabling D. work area cabling

Computer Science & Information Technology