What is the output of the following code?

```
#include
using namespace std;

void f(double &p)
{
p += 2;
}

int main()
{
double x = 1;
double y = 1;

f(x);
f(y);

cout << "x is " << x;
cout << " y is " << y << endl;

return 0;
}
```
a. x is 1 y is 2
b. x is 2 y is 1
c. x is 1 y is 1
d. x is 2 y is 2
e. x is 3 y is 3



e. x is 3 y is 3```

Computer Science & Information Technology

You might also like to view...

You must add the ____ that will create the recordset in which to store and retrieve data before you can use a database as a content source for a dynamic Web page.

A. client-side behaviors B. server-side behaviors C. meta tags D. templates

Computer Science & Information Technology

Express the ratio in simplest form. 9 ft : 12 yd

A. :
B. :
C. :
D. :
E. :

Computer Science & Information Technology

The ____ layer of the OSI model performs end-to-end error control and end-to-end flow control.?

A. ?application B. ?presentation C. ?transport D. ?session

Computer Science & Information Technology

What are the influences on instruction set design?

What will be an ideal response?

Computer Science & Information Technology