what will be the output of the following program?
#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;
}

Posted on by