1.

What is the output of this program?
#include 
using namespace std;
int function(int p = 12, int q)
{
int s;
s = p + q;
return s;
}
int main()
{
cout << function(15);
return 0;
}

A. 15
B. 12
C. Runtime Error
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs