Q48
What will be the output of the following C++ code? #include using namespace std; int main() int i; char c; void *data; i = 2; c = 'd'; data = &i; cout << "the data points to the integer value" << data; data = &c; cout << "the data now points to the character" << data; return 0;
A.
2d
B.
two memory addresses
AnswerC.
3d
D.
4d
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board