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#it37.6#101.1170?\n
b. Is#it37.6#101.1170?
c. Is#it37.5#101.1170?
d. Is#it37.6#101.117?\n
e. none of the above

B

Computer Science & Information Technology

You might also like to view...

A(n) ________ at the beginning of a line indicates a paragraph with no lower levels below it

A) plus sign B) minus sign C) asterisk D) exclamation point

Computer Science & Information Technology

Which kind of scripting is best if you do not need to save the data that a user enters on a form?

A. server-side B. client-side C. front-end D. back-end

Computer Science & Information Technology