Q143
What will be the output of the following C++ code? #include using namespace std; template T max (T& a, T& b) return (a>b?a:b); int main () int i = 5, j = 6, k; long l = 10, m = 5, n; k = max(i, j); n = max(l, m); cout << k << endl; cout << n << endl; return 0;
A.
6
B.
6
10
Answer10
C.
5
10
10
D.
5
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board