What is the output of this program?
#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, inti)
cout <<<<
return 0;
Answers
Answered by
0
Answer:
Not read
Explanation:
Not read at all
Similar questions