What variables are local to the Add Numbers function?

```
int AddNumbers( int x, int y)
{
int z;
z = x + y;
return z;
}

```

A. x
B. y
C. x & y
D. x, y & z

D. x, y & z

Computer Science & Information Technology

You might also like to view...

The Advanced button in the Sort & Filter group on the Home tab allows the user to verify that a filter is working properly.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A comment can be deleted by right-clicking the comment balloon and clicking Delete Comment.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology