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

Join The Discussion