Q115
What will be the output of the following C++ code? #include using namespace std; int add(int first, int second) return first + second + 15; int operation(int first, int second, int (*functocall)(int, int)) return (*functocall)(first, second); int main() int a; int (*plus)(int, int) = add; a = operation(15, 10, plus); cout << a; return 0;
A.
25
B.
35
C.
40
AnswerD.
45
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board