Vidyalelo
C++ Programming · Q145

Classes and Objects in C++

Programming · C++ Programming · question 145

Q145

What will be the output of the following C++ code? #include using namespace std; int main() int a, b; int* c; c = &a; a = 200; b = 200; *c = 100; b = *c; cout << *c << " " << b; return 0;

A.
100 200
B.
100 0
C.
200 200
D.
100 100
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board