Analyze the following code:

```
#include
using namespace std;

int xfunction(int n, long t)
{
cout << "int";
return n;
}

long xfunction(long n)
{
cout << "long";
return n;
}

int main()
{
cout << xfunction(5);
}
```

A. The program runs fine but displays nothing.
B. The program does not compile because the compiler cannot distinguish which xfunction to invoke.
C. The program displays long followed by 5.
D. The program displays int followed by 5.


C. The program displays long followed by 5.

Computer Science & Information Technology

You might also like to view...

The keyword __________ is required to declare a class.

a. public b. private c. class d. All of the above.

Computer Science & Information Technology

?The navigation buttons at the bottom of a subform select records from the primary table in a main form.

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

Computer Science & Information Technology

A fixed-width layout offers little or no control over the width of elements, sometimes resulting in elements such as images shifting position.

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

Computer Science & Information Technology

Any subscript used by a programmer is automatically converted to a(n) ____ by the compiler.

A. integer B. expression C. offset D. equivalent pointer expression

Computer Science & Information Technology