Q118
What will be the output of the following C++ code? #include using namespace std; int n(char, int); int (*p) (char, int) = n; int main() (*p)('d', 9); p(10, 9); return 0; int n(char c, int i) cout << c << i; return 0;
A.
d9
9
Answer9
B.
d9d9
C.
d9
D.
compile time error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board