#include using namespace std; int main() { int *b, *c, x, y; x = 3; y = 5; b = &x; c = &y; cout << "The pointer variable b is stored at " << &b <