Q627
What will be the output of the following C++ code? #include #include using namespace std; int main () cout << min(2, 1) << ' '; cout << min('m','m') << ' '; return 0;
A.
Error
B.
Runtime error
C.
1 m
AnswerD.
5 m
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board