1.

What is the output of this program?
#include <iostream>
#include <algorithm>
using namespace std;
int main ()
{
cout << min(200, 201) << ' ';
cout << min('U','L') << ' n';
return 0;
}

A. 201 U
B. U 201
C. L 200
D. 200 L
E. Compilation Error
Answer» E. Compilation Error


Discussion

No Comment Found

Related MCQs