What is the output from this program?

```
#include
#include
using namespace std;
void doSomething ( int&, int );
int main ()
{
int first;
int second;
first = 1;
second = 2;
doSomething( second, first );
cout << setw(4) << first << setw(4) << second << endl;
return 0;
}
void doSomething( int& this, int that )
{
int theOther;
theOther = 5;
that = 2 + theOther;
this = theOther * that;
}
```

a. 35 2
b. 1 35
c. 35 7
d. 1 2

b. 1 35

Computer Science & Information Technology

You might also like to view...

________ refer to information about a file, such as the author, the date the file was last changed, and any tags

Fill in the blank(s) with correct word

Computer Science & Information Technology

The Thunderbolt protocol _________ layer is responsible for link maintenance including hot-plug detection and data encoding to provide highly efficient data transfer.

A. cable B. application C. common transport D. physical

Computer Science & Information Technology