I have a class B with a pointer attribute of class A with a method that assigns the pointer attribute to the variable of the other class A. Yet this variable is private, assigning the variable therefore create an error. How can I solve this issue?
#include<iostream>
using namespace std;
class A {
private :
    int x;
public:
    A(int);
    ~A();
};
class B {
private :
    A * pA;
    int y;
public:
    B(int, int);
    ~B();
    void imprimer();
};
void B::imprimer() {
    cout << "B::imprimer: " << pA->x << " " << y << endl;
    }
main()
{
    B to(1, 2);
    to.imprimer(); //instruction (1)
}
Gives the following result :
    $ g++ td4Exercice1_2.cpp -o td4Exercice1_2
td4Exercice1_2.cpp: In member function ‘void B::imprimer()’:
td4Exercice1_2.cpp:7:6: error: ‘int A::x’ is private
  int x;
      ^
td4Exercice1_2.cpp:24:33: error: within this context
  cout << "B::imprimer: " << pA->x << " " << y << endl;
 
     
    