Vidyalelo
C++ Programming · Q143

C++ miscellaneous

Programming · C++ Programming · question 143

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
Answer
C.
5
10
D.
5

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board