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...

Someone who gains access to a system and causes harm is a __________?

a. White hat hacker b. Black hat hacker c. Grey hat hacker d. Red hat hacker

Computer Science & Information Technology

The ______________ address is composed of two 24-bit numbers.

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

Computer Science & Information Technology