Q991
What will be the output of the following C++ code? #include #include #include using namespace std; template T func(T a) return a; template T func(U a) return (T)a; int main(int argc, char const *argv[]) int a = 5; int b = func(a); int c = func(5.5); cout<<b<<c<<endl; return 0;
A.
5
B.
55
AnswerC.
Error
D.
Segmentation fault
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board