What is displayed by this program?

```
#include

void seven(int *xp);

int
main(void)
{
int x, y;

x = 5; y = 6;
seven(&x);
seven(&y);
printf("%4d%4d\n", x, y);

return(0);
}

void
seven(int *xp)
{
int y;

y = *xp + 2;
*xp = y * 3;
}
```
a. 21 24
b. 21 8
c. 5 6
d. 5 8
e. none of the above

A

Computer Science & Information Technology

You might also like to view...

Which of the following best describes the goal of the presentation layer of the OSI model?

A. It is responsible for addressing of the packets. B. It is responsible for formatting of packets including encryption and encryption. C. It is responsible for establishing connections and terminations between the computers. D. It is responsible for the transfer of data.

Computer Science & Information Technology

A graph is ______ if each pair of distinct vertices has a path between them.

a. complete b. disconnected c. connected d. full

Computer Science & Information Technology