What is the output of this program ? #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

A) d99

B) d9d9

C) d9

D) compile time error

View Answer
Option – A.