Vidyalelo
C++ Programming · Q45

Functions and Procedures in C++

Programming · C++ Programming · question 45

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
Answer

Answer: Option D

Solution

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