1.

What is the output of this program?
#include 
using namespace std;
void function(int n)
{
cout << n< }
void function(double m)
{
cout << m;
}
int main(void)
{
function(10);
function(50.36);
return 0;
}

A. 10 50.36
B. 50.36 10
C. 10 50
D. All of above
E. None of these
Answer» B. 50.36 10


Discussion

No Comment Found