Examveda

What will be the output of the following C++ code?
#include <iostream>
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

B. d9d9

C. d9

D. compile time error

Answer: Option A


Join The Discussion

Related Questions on Functions and Procedures in C plus plus