-
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;
}
-
- 201 U
- U 201
- L 200
- 200 L
- Compilation Error
Correct Option: D
In this program, We are finding the minimum value by using min method.