1.

What is the output of this program?
#include 
using namespace std;
int function(int n, int m)
{
cout << n;
cout << m;
return 0;
}
int main(void)
{
int(*p)(char, int);
p = function;
function(11, 10);
p(12, 13);
return 0;
}

A. 11
B. 10
C. 12
D. 13
E. Compilation Error
Answer» F.


Discussion

No Comment Found

Related MCQs