What is the output from this program?

```
#include

void
do_something(int *thisp, int that)
{
int the_other;

the_other = 5;
that = 2 + the_other;
*thisp = the_other * that;
}

int
main(void)
{
int first, second;

first = 1;
second = 2;
do_something(&second, first);
printf("%4d%4d\n", first, second);

return (0);
}
```
a. 35 2
b. 1 35
c. 35 7
d. 1 2
e. 0


B

Computer Science & Information Technology

You might also like to view...

When each object of a class maintains its own copy of an attribute, the attribute is known as a(n) _____.

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

Computer Science & Information Technology

There is no built-in Help system for Windows 10

Indicate whether the statement is true or false

Computer Science & Information Technology

When attempting to access a remote computer on which your user name and password do not exist, what user group will you be placed in?

Administrators Guests Backup Operators Anonymous users

Computer Science & Information Technology

What is used to start accessing a linked chain of nodes?

a. The head pointer b. item[0] c. item[1] d. The null pointer

Computer Science & Information Technology