Q45
What will be the output of the following C++ code? #include using namespace std; int func (int a, int b) cout << a; cout << b; return 0; int main(void) int(*ptr)(char, int); ptr = func; func(2, 3); ptr(2, 3); return 0;
A.
2323
B.
232
C.
23
D.
compile time error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board