What would be displayed by the following program? (The symbol '#' stands for one blank character.)

```
int
main(void)
{
double a, b;

a = 37.56;
b = 101.117;
printf("Is it%6.1f%9.4f", a, b);
printf("?\n");

return (0);
}
```

a. Is#it##37.6#101.1170?\n
b. Is#it##37.6#101.1170?
c. Is#it##37.5#101.1170?
d. Is#it##37.6#101.117?\n
e. none of the above


b. Is#it##37.6#101.1170?

Computer Science & Information Technology

You might also like to view...

The Error Checking button displays as a ________

A) red square B) yellow diamond C) blue circle D) purple arrow

Computer Science & Information Technology

Computer security is the use of ____ security techniques to protect data stored on computers.

A. ?physical B. ?port C. ?logical D. ?encrypted

Computer Science & Information Technology

What function can be used to get string input from the keyboard?

A. extraction B. getline C. ignore D. substr

Computer Science & Information Technology

The ____ category of the Insert panel is used to insert repeated regions.

A. Application B. Common C. Data D. Records

Computer Science & Information Technology